diff options
author | lloyd <[email protected]> | 2008-06-11 01:28:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-11 01:28:32 +0000 |
commit | 3ce3dce2ff22634ee250ce6de113d1fd455019a4 (patch) | |
tree | 682e10550f00b070881d9908d7768af02096d9a3 /doc/examples/rsa_dec.cpp | |
parent | 845d40bd4c9d37bcd2c79541123fed044e66c2f8 (diff) |
Add missing headers in the example problems, noticed while compiling under
GCC 4.3. Missing <memory> for auto_ptr and <cstdlib> for atoi
Diffstat (limited to 'doc/examples/rsa_dec.cpp')
-rw-r--r-- | doc/examples/rsa_dec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/rsa_dec.cpp b/doc/examples/rsa_dec.cpp index 77b5e5dd4..6f71e2831 100644 --- a/doc/examples/rsa_dec.cpp +++ b/doc/examples/rsa_dec.cpp @@ -11,6 +11,7 @@ This file is in the public domain #include <iostream> #include <fstream> #include <string> +#include <memory> #include <botan/botan.h> #include <botan/look_pk.h> // for get_kdf |