diff options
author | Vincent Richard <[email protected]> | 2009-05-01 17:11:20 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2009-05-01 17:11:20 +0000 |
commit | f688cbb29287df2e1d84fa3ae821bfedaaa3b4d2 (patch) | |
tree | efc28df6643c0e57868e286fdc1dafff290979f3 | |
parent | Removed '-pipe' compiler flags, as it is not available on all platforms. (diff) | |
download | vmime-f688cbb29287df2e1d84fa3ae821bfedaaa3b4d2.tar.gz vmime-f688cbb29287df2e1d84fa3ae821bfedaaa3b4d2.zip |
Fixed dynamic_cast support detection on HPUX (aCC).
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1414,8 +1414,8 @@ AC_TRY_COMPILE( AC_MSG_CHECKING([if C++ compiler supports dynamic_cast<> (required)]) AC_TRY_COMPILE( [ - class foo { virtual ~foo() { } }; - class bar : public foo { }; + class foo { public: virtual ~foo() { } }; + class bar : public foo { public: virtual ~bar() { } }; ],[ foo *c=0; bar *c1=dynamic_cast<bar*>(c); |