We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3941f50 commit a0aa309Copy full SHA for a0aa309
src/include/splash/basetypes/ColTypeBool.hpp
@@ -40,7 +40,7 @@ class ColTypeBool : public CollectionType
40
// this is a h5py compatible implementation for bool, see:
41
// http://docs.h5py.org/en/latest/faq.html
42
this->type = H5Tenum_create(H5T_NATIVE_INT8);
43
- const char *names[2] = {"true", "false"};
+ const char *names[2] = {"TRUE", "FALSE"};
44
const int64_t val[2] = {1, 0};
45
H5Tenum_insert(this->type, names[0], &val[0]);
46
H5Tenum_insert(this->type, names[1], &val[1]);
0 commit comments