Skip to content

Commit

Permalink
i dont even know at this point
Browse files Browse the repository at this point in the history
  • Loading branch information
camila314 committed Mar 8, 2024
1 parent ebb1129 commit 0183881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ast.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::string> depends; ///< List of classes that this class or function depends on
};

Expand Down

0 comments on commit 0183881

Please sign in to comment.