diff options
author | Jack Lloyd <[email protected]> | 2017-02-11 16:18:13 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-02-11 16:18:13 -0500 |
commit | 167edf2dc7cc1a304241f09dd7f86d3c68f50e06 (patch) | |
tree | 325cb7e9ed807a7c1c462a1393f4a18f231cef65 | |
parent | e6008b215b55c0184804828519d3a64bbd4637d4 (diff) |
Resolve Doxygen error in cpuid.h
The macro has to be on its own line or Doxygen gets confused.
-rw-r--r-- | src/lib/utils/cpuid.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/utils/cpuid.h b/src/lib/utils/cpuid.h index f618ac35c..71dc24496 100644 --- a/src/lib/utils/cpuid.h +++ b/src/lib/utils/cpuid.h @@ -46,7 +46,8 @@ class BOTAN_DLL CPUID * Deprecated equivalent to * o << "CPUID flags: " << CPUID::to_string() << "\n"; */ - static void BOTAN_DEPRECATED("Use CPUID::to_string") print(std::ostream& o); + BOTAN_DEPRECATED("Use CPUID::to_string") + static void print(std::ostream& o); /** * Return a possibly empty string containing list of known CPU |