]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/tagdemo/foo.cpp, tests/tagdemo/main.cpp [ hpux ] <aCC>:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 17 Mar 2006 17:20:11 +0000 (17:20 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 17 Mar 2006 17:20:11 +0000 (17:20 +0000)
The HPPA C++ compiler has namespace support but provides no
`std' namespace; just provide it with a dummy.

ChangeLog
tests/tagdemo/foo.cpp
tests/tagdemo/main.cpp

index a60591f2b55baecb1372a85ecb4dcf31cab54981..40c9d10bc0560907b1fe300dafe3fa21b4e733ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * tests/tagdemo/foo.cpp, tests/tagdemo/main.cpp [ hpux ] <aCC>:
+       The HPPA C++ compiler has namespace support but provides no
+       `std' namespace; just provide it with a dummy.
+
        * libltdl/m4/libtool.m4 (AC_PROG_SED): Do not forget to reset
        IFS even in case of empty `$PATH'.
 
index d3428116a060bbaf48aa0f319071a4c637f5ab32..8b980145679ffffc15b318b77deb95782293dbf1 100644 (file)
@@ -26,6 +26,7 @@
 # include <iostream.h>
 #endif
 #ifdef HAVE_NAMESPACES
+namespace std { }
 using namespace std;
 #endif
 
index 32ed0cadf99ab715bdb8e1ae73cf1cd18fddc03e..ef77847f91a3f7ad2c4dd27e2c3769f5501b0fa4 100644 (file)
@@ -29,6 +29,7 @@
 # include <iostream.h>
 #endif
 #ifdef HAVE_NAMESPACES
+namespace std { }
 using namespace std;
 #endif