diff options
author | Sean McBride <sean@rogue-research.com> | 2021-03-10 17:51:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 17:51:45 (GMT) |
commit | 20c452fe5c0955a81ae1222d846632f1525f08f4 (patch) | |
tree | 79ebdf43a51b3283625742e02614f1c3f15fc3b6 /c++/examples/create.cpp | |
parent | c41a1cb2094ae0cc5fb40671181ce4e9f73ba9dc (diff) | |
download | hdf5-20c452fe5c0955a81ae1222d846632f1525f08f4.zip hdf5-20c452fe5c0955a81ae1222d846632f1525f08f4.tar.gz hdf5-20c452fe5c0955a81ae1222d846632f1525f08f4.tar.bz2 |
Removed checks/workarounds for pre-C++89 compatibility (#449)
After 30+ years, just assume that the following exist:
- extension-less includes
- namespaces
- std::
- static_cast
- bool
Diffstat (limited to 'c++/examples/create.cpp')
-rw-r--r-- | c++/examples/create.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/c++/examples/create.cpp b/c++/examples/create.cpp index ef2de36..e55230f 100644 --- a/c++/examples/create.cpp +++ b/c++/examples/create.cpp @@ -15,11 +15,7 @@ * This example writes a dataset to a new HDF5 file. */ -#ifdef OLD_HEADER_FILENAME -#include <iostream.h> -#else #include <iostream> -#endif #include <string> #include "H5Cpp.h" |