From 0183881423dbe5ad563e8f2efc5955d81942b03d Mon Sep 17 00:00:00 2001 From: camila314 <47485054+camila314@users.noreply.github.com> Date: Thu, 7 Mar 2024 21:59:14 -0600 Subject: [PATCH] i dont even know at this point --- include/ast.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ast.hpp b/include/ast.hpp index 307b6cd..e54da3b 100644 --- a/include/ast.hpp +++ b/include/ast.hpp @@ -69,8 +69,8 @@ namespace broma { /// @brief List of attributes that could be applied to a class or a function struct Attributes { std::string docs; ///< Any docstring pulled from a `[[docs(...)]]` attribute. - Platform links; ///< All the platforms that link the class or function - Platform missing; ///< All the platforms that are missing the class or function + Platform links = Platform::None; ///< All the platforms that link the class or function + Platform missing = Platform::None; ///< All the platforms that are missing the class or function std::vector depends; ///< List of classes that this class or function depends on };