From d0fbd68055e3f4a796330cc8acc6c0954b5327ff Mon Sep 17 00:00:00 2001 From: untodesu Date: Thu, 11 Sep 2025 15:48:53 +0500 Subject: Run clang-format across the project --- game/server/whitelist.hh | 52 ++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'game/server/whitelist.hh') diff --git a/game/server/whitelist.hh b/game/server/whitelist.hh index 4695d16..990b15a 100644 --- a/game/server/whitelist.hh +++ b/game/server/whitelist.hh @@ -1,26 +1,26 @@ -#pragma once - -namespace config -{ -class Boolean; -class String; -} // namespace config - -namespace whitelist -{ -extern config::Boolean enabled; -extern config::String filename; -} // namespace whitelist - -namespace whitelist -{ -void init(void); -void init_late(void); -void shutdown(void); -} // namespace whitelist - -namespace whitelist -{ -bool contains(std::string_view username); -bool matches(std::string_view username, std::uint64_t password_hash); -} // namespace whitelist +#pragma once + +namespace config +{ +class Boolean; +class String; +} // namespace config + +namespace whitelist +{ +extern config::Boolean enabled; +extern config::String filename; +} // namespace whitelist + +namespace whitelist +{ +void init(void); +void init_late(void); +void shutdown(void); +} // namespace whitelist + +namespace whitelist +{ +bool contains(std::string_view username); +bool matches(std::string_view username, std::uint64_t password_hash); +} // namespace whitelist -- cgit