From f9c7943964dc725841fa189f5da67c3f33f614aa Mon Sep 17 00:00:00 2001 From: Pepper0ni <93387759+Pepper0ni@users.noreply.github.com> Date: Tue, 8 Apr 2025 13:48:17 +0100 Subject: [PATCH] apply clang --- soh/soh/Enhancements/randomizer/3drando/hints.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/soh/soh/Enhancements/randomizer/3drando/hints.hpp b/soh/soh/Enhancements/randomizer/3drando/hints.hpp index 91955b833..74c3b784a 100644 --- a/soh/soh/Enhancements/randomizer/3drando/hints.hpp +++ b/soh/soh/Enhancements/randomizer/3drando/hints.hpp @@ -34,7 +34,7 @@ class HintText { public: HintText() = default; explicit HintText(CustomMessage clearText_, std::vector ambiguousText_ = {}, - std::vector obscureText_ = {}, CustomMessage name_ = {""}); + std::vector obscureText_ = {}, CustomMessage name_ = { "" }); const CustomMessage& GetName() const; const CustomMessage& GetClear() const; const CustomMessage& GetObscure() const; @@ -49,7 +49,8 @@ class HintText { bool operator!=(const HintText& right) const; private: - CustomMessage clearText; //RANDOTODO proper system to define use of articles instead of having the name and name with articles repeated + CustomMessage clearText; // RANDOTODO proper system to define use of articles instead of having the name and name + // with articles repeated std::vector ambiguousText = {}; std::vector obscureText = {}; CustomMessage name;