mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-17 15:10:02 +08:00
* 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:
parent
a35265f704
commit
2aa72e57d2
@ -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'.
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
# include <iostream.h>
|
||||
#endif
|
||||
#ifdef HAVE_NAMESPACES
|
||||
namespace std { }
|
||||
using namespace std;
|
||||
#endif
|
||||
|
||||
|
@ -29,6 +29,7 @@
|
||||
# include <iostream.h>
|
||||
#endif
|
||||
#ifdef HAVE_NAMESPACES
|
||||
namespace std { }
|
||||
using namespace std;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user