diff options
author | Jack Lloyd <[email protected]> | 2016-11-02 17:09:55 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-02 17:09:55 -0400 |
commit | 1a26a58b1529cc566c6c54b5c63296d3ded7d943 (patch) | |
tree | 3dbcf189b4001844a2317ce0f019cd864540d5bd | |
parent | a638b961943a91aec43bd6f6461efa6bddff9a35 (diff) |
Remove lock and alias map from SCAN_Name
Not used anymore.
-rw-r--r-- | src/lib/base/scan_name.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/base/scan_name.h b/src/lib/base/scan_name.h index 8356863ed..dd0860356 100644 --- a/src/lib/base/scan_name.h +++ b/src/lib/base/scan_name.h @@ -11,7 +11,6 @@ #include <botan/exceptn.h> #include <string> #include <vector> -#include <botan/mutex.h> #include <map> namespace Botan { @@ -91,9 +90,6 @@ class BOTAN_DLL SCAN_Name { return (m_mode_info.size() >= 2) ? m_mode_info[1] : ""; } private: - static mutex_type g_alias_map_mutex; - static std::map<std::string, std::string> g_alias_map; - std::string m_orig_algo_spec; std::string m_alg_name; std::vector<std::string> m_args; |