diff options
author | Jack Lloyd <[email protected]> | 2020-11-08 06:55:10 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-11-08 06:55:10 -0500 |
commit | 84ab2bc6fa19254d1abcedcdc1b71be84c1c1728 (patch) | |
tree | ba990522dfe0e6d87a6764a5c8aeea5195232d79 /src/lib/utils/cpuid | |
parent | d1773955e481f7c2fe1baeca580ff4cb5a8b8c58 (diff) |
Remove various deprecated functions
Diffstat (limited to 'src/lib/utils/cpuid')
-rw-r--r-- | src/lib/utils/cpuid/cpuid.cpp | 6 | ||||
-rw-r--r-- | src/lib/utils/cpuid/cpuid.h | 7 |
2 files changed, 0 insertions, 13 deletions
diff --git a/src/lib/utils/cpuid/cpuid.cpp b/src/lib/utils/cpuid/cpuid.cpp index 2aeec792d..a85960e71 100644 --- a/src/lib/utils/cpuid/cpuid.cpp +++ b/src/lib/utils/cpuid/cpuid.cpp @@ -84,12 +84,6 @@ std::string CPUID::to_string() } //static -void CPUID::print(std::ostream& o) - { - o << "CPUID flags: " << CPUID::to_string() << "\n"; - } - -//static void CPUID::initialize() { state() = CPUID_Data(); diff --git a/src/lib/utils/cpuid/cpuid.h b/src/lib/utils/cpuid/cpuid.h index 04d0bbd19..468b004b5 100644 --- a/src/lib/utils/cpuid/cpuid.h +++ b/src/lib/utils/cpuid/cpuid.h @@ -46,13 +46,6 @@ class BOTAN_PUBLIC_API(2,1) CPUID final static bool has_simd_32(); /** - * Deprecated equivalent to - * o << "CPUID flags: " << CPUID::to_string() << "\n"; - */ - BOTAN_DEPRECATED("Use CPUID::to_string") - static void print(std::ostream& o); - - /** * Return a possibly empty string containing list of known CPU * extensions. Each name will be seperated by a space, and the ordering * will be arbitrary. This list only contains values that are useful to |