diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2003-03-20 02:13:13 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2003-03-20 02:13:13 (GMT) |
commit | da0f4cd981ec8f524be43cd1db3bff88b34187db (patch) | |
tree | 63734f0f60ad0964bcc8756c5287e3b10f434599 /c++ | |
parent | 5cc6567850b77f29803eece112bd4887ec507467 (diff) | |
download | hdf5-da0f4cd981ec8f524be43cd1db3bff88b34187db.zip hdf5-da0f4cd981ec8f524be43cd1db3bff88b34187db.tar.gz hdf5-da0f4cd981ec8f524be43cd1db3bff88b34187db.tar.bz2 |
[svn-r6510] Purpose:
Cleanup
Description:
Removed "using namespace std" since it's in namespace H5 already.
Platforms tested:
HPUX 11.00 (kelgia)
Linux 2.2x (eirene)
IRIX 6.5.11 (modi4)
SunOS 5.7 (arabica) - by Elena
Misc. update:
Diffstat (limited to 'c++')
-rw-r--r-- | c++/examples/chunks.cpp | 3 | ||||
-rw-r--r-- | c++/examples/compound.cpp | 3 | ||||
-rw-r--r-- | c++/examples/create.cpp | 3 | ||||
-rw-r--r-- | c++/examples/extend_ds.cpp | 3 | ||||
-rw-r--r-- | c++/examples/h5group.cpp | 3 | ||||
-rw-r--r-- | c++/examples/readdata.cpp | 3 | ||||
-rw-r--r-- | c++/examples/writedata.cpp | 3 |
7 files changed, 0 insertions, 21 deletions
diff --git a/c++/examples/chunks.cpp b/c++/examples/chunks.cpp index 44d543e..556472f 100644 --- a/c++/examples/chunks.cpp +++ b/c++/examples/chunks.cpp @@ -18,9 +18,6 @@ */ #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> diff --git a/c++/examples/compound.cpp b/c++/examples/compound.cpp index c559eb7..68de654 100644 --- a/c++/examples/compound.cpp +++ b/c++/examples/compound.cpp @@ -19,9 +19,6 @@ */ #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> diff --git a/c++/examples/create.cpp b/c++/examples/create.cpp index 219d771..06952f9 100644 --- a/c++/examples/create.cpp +++ b/c++/examples/create.cpp @@ -17,9 +17,6 @@ // #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> diff --git a/c++/examples/extend_ds.cpp b/c++/examples/extend_ds.cpp index f6f5691..f748cde 100644 --- a/c++/examples/extend_ds.cpp +++ b/c++/examples/extend_ds.cpp @@ -20,9 +20,6 @@ */ #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> diff --git a/c++/examples/h5group.cpp b/c++/examples/h5group.cpp index 301d383..95161da 100644 --- a/c++/examples/h5group.cpp +++ b/c++/examples/h5group.cpp @@ -21,9 +21,6 @@ // the C version is used in this example. // #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> diff --git a/c++/examples/readdata.cpp b/c++/examples/readdata.cpp index 0805fa5..fa5e141 100644 --- a/c++/examples/readdata.cpp +++ b/c++/examples/readdata.cpp @@ -19,9 +19,6 @@ // #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> diff --git a/c++/examples/writedata.cpp b/c++/examples/writedata.cpp index ed0268b..2a7381c 100644 --- a/c++/examples/writedata.cpp +++ b/c++/examples/writedata.cpp @@ -22,9 +22,6 @@ */ #include <string> -#if !defined(H5_NO_NAMESPACE) && !defined(H5_NO_STD) -using namespace std; -#endif #ifdef OLD_HEADER_FILENAME #include <iostream.h> |