summaryrefslogtreecommitdiffstats
path: root/c++/src
diff options
context:
space:
mode:
Diffstat (limited to 'c++/src')
-rw-r--r--c++/src/H5Exception.cpp2
-rw-r--r--c++/src/H5Exception.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/c++/src/H5Exception.cpp b/c++/src/H5Exception.cpp
index 81987c2..c61e252 100644
--- a/c++/src/H5Exception.cpp
+++ b/c++/src/H5Exception.cpp
@@ -23,7 +23,9 @@
#ifndef H5_NO_NAMESPACE
namespace H5 {
+#ifndef H5_NO_STD
using namespace std;
+#endif // H5_NO_STD
#endif
// Default constructor
diff --git a/c++/src/H5Exception.h b/c++/src/H5Exception.h
index 61fc261..a77400e 100644
--- a/c++/src/H5Exception.h
+++ b/c++/src/H5Exception.h
@@ -20,7 +20,9 @@
#ifndef H5_NO_NAMESPACE
namespace H5 {
-using namespace std;
+#ifndef H5_NO_STD
+ using namespace std;
+#endif // H5_NO_STD
#endif
class H5_DLLCPP Exception {