* 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.
This commit is contained in:
Ralf Wildenhues 2006-03-17 17:20:11 +00:00
parent a35265f704
commit 2aa72e57d2
3 changed files with 6 additions and 0 deletions

View File

@ -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'.

View File

@ -26,6 +26,7 @@
# include <iostream.h>
#endif
#ifdef HAVE_NAMESPACES
namespace std { }
using namespace std;
#endif

View File

@ -29,6 +29,7 @@
# include <iostream.h>
#endif
#ifdef HAVE_NAMESPACES
namespace std { }
using namespace std;
#endif