Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calling close() is not optional #2521

Merged
merged 1 commit into from
Dec 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user_guide/source/api_high/cxx11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ C++11 Write example

}

// optional, but is good practice to indicate oStream shouldn't be used
// Calling close is mandatory!
oStream.close();

C++11 Read "step-by-step" example
Expand Down Expand Up @@ -81,7 +81,7 @@ C++11 Read "step-by-step" example
const std::vector<float> temperature = iStream.read<float>( "temperature", start, count );
const std::vector<float> pressure = iStream.read<float>( "pressure", start, count );
}
// optional, but is good practice to indicate iStream shouldn't be used
// Don't forget to call close!
iStream.close();
}

Expand Down