diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-10-26 14:27:26 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-10-26 14:27:26 (GMT) |
commit | a9e40af5b2ef2d2b9901cd69493b55552d43b33c (patch) | |
tree | 47e6ade74490f9d7d2507ca2dde4d60054e88d6d | |
parent | 96f43ab898c0e70ae7ff9d4c5e32c15c0c56768a (diff) | |
download | hdf5-a9e40af5b2ef2d2b9901cd69493b55552d43b33c.zip hdf5-a9e40af5b2ef2d2b9901cd69493b55552d43b33c.tar.gz hdf5-a9e40af5b2ef2d2b9901cd69493b55552d43b33c.tar.bz2 |
Description:
User's sample code used "not" instead of "!" and Windows does
not like that. Fixed.
Platforms tested:
Linux/32 2.6 (jam)
-rw-r--r-- | hl/c++/test/ptableTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/c++/test/ptableTest.cpp b/hl/c++/test/ptableTest.cpp index 22c1c1c..c388af3 100644 --- a/hl/c++/test/ptableTest.cpp +++ b/hl/c++/test/ptableTest.cpp @@ -638,7 +638,7 @@ int TestHDFFV_9758() // Create a packet table FL_PacketTable ptable(fileID, "/examplePacketTable", compound_type, 1); - if (not ptable.IsValid()) + if (!ptable.IsValid()) goto error; // Add packets to the table |