Reformat code block with brackets

Co-authored-by: Max Leske <250711+theseion@users.noreply.github.com>
This commit is contained in:
Ervin Hegedus
2025-07-28 10:38:01 +02:00
committed by GitHub
parent abed778b4a
commit 9fb75d2c9a

View File

@@ -166,7 +166,9 @@ protected:
private:
static inline void set_error(std::string* err, const char* msg) {
if (err) *err = msg;
if (err) {
*err = msg;
}
}
};