We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
HighFive/include/highfive/H5File.hpp
Lines 28 to 45 in 7638232
and then here:
Lines 54 to 56 in 7638232
isn't particularly type safe. One option is:
class File { enum class FileMode { ReadOnly, }; static constexpr ReadOnly = FileMode::ReadOnly; };
and a lot of boiler plate to allow it to work properly as a bitset. Or use:
using FileMode = std::bitset<?>; class File { static constexpr FileMode ReadOnly = {...}; };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HighFive/include/highfive/H5File.hpp
Lines 28 to 45 in 7638232
and then here:
HighFive/include/highfive/H5File.hpp
Lines 54 to 56 in 7638232
isn't particularly type safe. One option is:
and a lot of boiler plate to allow it to work properly as a bitset. Or use:
The text was updated successfully, but these errors were encountered: