commit | 0f2096f06b5402f0d4b195dd4692b1868fcd6d25 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Tue Oct 01 14:49:42 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Tue Oct 01 14:49:42 2013 -0700 |
tree | 596a40c10b08ac7482f0e2196b18c714a35a8984 | |
parent | 1130afcfb4d5af493852eb46e045862110c7f294 [diff] |
security: Temporarily include <stdexcept>
diff --git a/ndn-cpp/security/identity/identity-manager.cpp b/ndn-cpp/security/identity/identity-manager.cpp index e6446cd..e669a20 100644 --- a/ndn-cpp/security/identity/identity-manager.cpp +++ b/ndn-cpp/security/identity/identity-manager.cpp
@@ -5,6 +5,9 @@ * See COPYING for copyright and distribution information. */ +#if 1 +#include <stdexcept> +#endif #include "../../util/logging.hpp" #include "../../sha256-with-rsa-signature.hpp" #include "../security-exception.hpp"
diff --git a/ndn-cpp/security/identity/memory-private-key-storage.cpp b/ndn-cpp/security/identity/memory-private-key-storage.cpp index bab5df8..af2ac13 100644 --- a/ndn-cpp/security/identity/memory-private-key-storage.cpp +++ b/ndn-cpp/security/identity/memory-private-key-storage.cpp
@@ -5,6 +5,9 @@ * See COPYING for copyright and distribution information. */ +#if 1 +#include <stdexcept> +#endif #include "../../c/util/crypto.h" #include "../security-exception.hpp" #include "memory-private-key-storage.hpp"