Changes in src/AST/Decl.hpp [2d6add4:90be0cf]
- File:
-
- 1 edited
-
src/AST/Decl.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.hpp
r2d6add4 r90be0cf 302 302 }; 303 303 304 /// Enumeration attribute kind. 304 305 enum class EnumAttribute{ Value, Posn, Label }; 306 305 307 /// enum declaration `enum Foo { ... };` 306 308 class EnumDecl final : public AggregateDecl { … … 328 330 const char * typeString() const override { return aggrString( Enum ); } 329 331 330 const std::string getUnmangeldArrayName( const EnumAttribute attr ) const;331 332 unsigned calChildOffset(const std::string & childEnum) const;333 unsigned calChildOffset(const ast::EnumInstType * childEnum) const;334 335 bool isSubTypeOf(const ast::EnumDecl *) const;336 332 bool isTyped() const; 337 333 bool isOpaque() const;
Note:
See TracChangeset
for help on using the changeset viewer.