diff options
author | unknown <svoj@mysql.com> | 2005-06-16 16:35:09 +0500 |
---|---|---|
committer | unknown <svoj@mysql.com> | 2005-06-16 16:35:09 +0500 |
commit | 0dabdf15a7f8d75eddc11f53f8ef87de3783b72d (patch) | |
tree | c92c38ffa34a246fd7cbc247a2d6dc5f7628263e /extra/yassl/taocrypt/src/misc.cpp | |
parent | fc465d1497ce598d07ec75eeaafc7ca84b578ee6 (diff) | |
download | mariadb-git-0dabdf15a7f8d75eddc11f53f8ef87de3783b72d.tar.gz |
WL#2286 - Compile MySQL w/YASSL support
Merge with latest yaSSL.
extra/yassl/include/lock.hpp:
Merge with latest yaSSL.
extra/yassl/include/socket_wrapper.hpp:
Merge with latest yaSSL.
extra/yassl/mySTL/helpers.hpp:
Merge with latest yaSSL.
extra/yassl/src/lock.cpp:
Merge with latest yaSSL.
extra/yassl/src/log.cpp:
Merge with latest yaSSL.
extra/yassl/src/socket_wrapper.cpp:
Merge with latest yaSSL.
extra/yassl/src/ssl.cpp:
Merge with latest yaSSL.
extra/yassl/src/timer.cpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/include/misc.hpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/include/random.hpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/include/types.hpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/src/asn.cpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/src/integer.cpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/src/misc.cpp:
Merge with latest yaSSL.
extra/yassl/taocrypt/src/random.cpp:
Merge with latest yaSSL.
Diffstat (limited to 'extra/yassl/taocrypt/src/misc.cpp')
-rw-r--r-- | extra/yassl/taocrypt/src/misc.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/extra/yassl/taocrypt/src/misc.cpp b/extra/yassl/taocrypt/src/misc.cpp index 3ec4502ed57..6a801a9995a 100644 --- a/extra/yassl/taocrypt/src/misc.cpp +++ b/extra/yassl/taocrypt/src/misc.cpp @@ -64,10 +64,6 @@ void* operator new[](size_t sz); void operator delete[](void* ptr); */ -/* namespace GCC_ABI { - extern "C" int __cxa_pure_virtual() { assert(0); return 0; } -} */ - namespace TaoCrypt { @@ -135,17 +131,5 @@ unsigned long Crop(unsigned long value, unsigned int size) } -#if !(defined(_MSC_VER) && (_MSC_VER < 1300)) && \ - !(defined(__HP_aCC) && (__HP_aCC <= 36300)) -using std::new_handler; -using std::set_new_handler; -#endif - -void CallNewHandler() -{ - abort(); -} - - } // namespace |