From 4811d326ef9698941627844e51e57d6ec0a210f9 Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Tue, 6 Mar 2001 02:14:12 -0500 Subject: [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) --- c++/test/dsets.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 +#include "H5Cpp.h" #include "h5test.h" #include "testhdf5.h" -#include "H5Cpp.h" #ifndef H5_NO_NAMESPACE using namespace H5; -- cgit v0.12