diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-08-18 22:16:56 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-08-18 22:16:56 (GMT) |
commit | 6496413284a3319bc41ad3ebde3783bae02d6e23 (patch) | |
tree | 0d46e5948389c2e64b75a56b9d73789c44a8f16b /c++/src/H5Attribute.cpp | |
parent | f27f7c7821350c31dc252cca2b875ae35e5516db (diff) | |
download | hdf5-6496413284a3319bc41ad3ebde3783bae02d6e23.zip hdf5-6496413284a3319bc41ad3ebde3783bae02d6e23.tar.gz hdf5-6496413284a3319bc41ad3ebde3783bae02d6e23.tar.bz2 |
[svn-r11264] Purpose: Additional code improvement
Description:
Used "using" declaration and directive better to reduce namespace
pollution.
Platforms tested:
Linux 2.4 (heping)
SunOS 5.8 64-bit (sol)
Diffstat (limited to 'c++/src/H5Attribute.cpp')
-rw-r--r-- | c++/src/H5Attribute.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/c++/src/H5Attribute.cpp b/c++/src/H5Attribute.cpp index 9a177b9..1939f6f 100644 --- a/c++/src/H5Attribute.cpp +++ b/c++/src/H5Attribute.cpp @@ -33,6 +33,9 @@ #ifndef H5_NO_NAMESPACE namespace H5 { +#ifndef H5_NO_STD + using namespace std; +#endif // H5_NO_STD #endif //-------------------------------------------------------------------------- |