diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-03-06 07:14:12 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2001-03-06 07:14:12 (GMT) |
commit | 4811d326ef9698941627844e51e57d6ec0a210f9 (patch) | |
tree | 65464850c78cc9ed139bba09a87671d29cb26344 /c++ | |
parent | f1932cb58219fd121ddb88cb9168a0caafad3a4c (diff) | |
download | hdf5-4811d326ef9698941627844e51e57d6ec0a210f9.zip hdf5-4811d326ef9698941627844e51e57d6ec0a210f9.tar.gz hdf5-4811d326ef9698941627844e51e57d6ec0a210f9.tar.bz2 |
[svn-r3551]
Purpose:
Bug fix
Description:
Compiled error about "RcsId initialized twice"
Solution:
This problem has been taken care of in the C++ API already. However,
because dsets.cpp includes the C++ header file H5Cpp.h after the
C test header files, h5test.h and testhdf5.h, the fix was missed.
Moved H5Cpp.h to before those C header files.
Platforms tested:
arabica (sparc-sun-solaris 2.7)
Diffstat (limited to 'c++')
-rw-r--r-- | c++/test/dsets.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/c++/test/dsets.cpp b/c++/test/dsets.cpp index 38357b7..b80a500 100644 --- a/c++/test/dsets.cpp +++ b/c++/test/dsets.cpp @@ -18,9 +18,10 @@ * *************************************************************/ +#include <iostream> +#include "H5Cpp.h" #include "h5test.h" #include "testhdf5.h" -#include "H5Cpp.h" #ifndef H5_NO_NAMESPACE using namespace H5; |