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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}
}
};