Fix style guide errors

This commit is contained in:
Aaron Po
2026-04-11 23:43:35 -04:00
parent 56ec728ba7
commit 823599a96f
8 changed files with 30 additions and 28 deletions

View File

@@ -13,10 +13,10 @@
*/
struct UserResult {
/// @brief Username handle.
std::string username;
std::string username{};
/// @brief Short user biography.
std::string bio;
std::string bio{};
};
#endif // BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_USER_RESULT_H_