Browse Source

Use static const instead of const static

nce_cpp
Zach Hilman 8 years ago
committed by Zach Hilman
parent
commit
1f83886c21
  1. 4
      src/core/crypto/key_manager.h

4
src/core/crypto/key_manager.h

@ -111,7 +111,7 @@ private:
void AttemptLoadKeyFile(std::string_view dir1, std::string_view dir2, std::string_view filename,
bool title);
const static std::unordered_map<std::string, KeyIndex<S128KeyType>> s128_file_id;
const static std::unordered_map<std::string, KeyIndex<S256KeyType>> s256_file_id;
static const std::unordered_map<std::string, KeyIndex<S128KeyType>> s128_file_id;
static const std::unordered_map<std::string, KeyIndex<S256KeyType>> s256_file_id;
};
} // namespace Core::Crypto
Loading…
Cancel
Save