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 BreweryResult {
/// @brief Brewery display name.
std::string name;
std::string name{};
/// @brief Brewery description text.
std::string description;
std::string description{};
};
#endif // BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_BREWERY_RESULT_H_