diff options
author | lloyd <[email protected]> | 2009-03-17 02:46:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-03-17 02:46:01 +0000 |
commit | b14127fc125dbbfc841ef8248bc797896dd2223f (patch) | |
tree | e7fff446bf8c577361b48a85066d006872989501 /doc/examples/ressol.cpp | |
parent | 92e1cc72da0315a5de8536265f2ef928d0e526c6 (diff) |
Add LibraryInitializers to the examples, instead of relying on lazy init.
Patch from David X Callaway.
Diffstat (limited to 'doc/examples/ressol.cpp')
-rw-r--r-- | doc/examples/ressol.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/examples/ressol.cpp b/doc/examples/ressol.cpp index 47a6550b6..43bb68d37 100644 --- a/doc/examples/ressol.cpp +++ b/doc/examples/ressol.cpp @@ -1,5 +1,6 @@ #include <botan/numthry.h> #include <botan/auto_rng.h> +#include <botan/botan.h> using namespace Botan; @@ -48,6 +49,7 @@ void test_ressol(const BigInt& p, RandomNumberGenerator& rng) int main() { + Botan::LibraryInitializer init; AutoSeeded_RNG rng; #if 0 |