Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.hpp

    r85855b0 raf746cc  
    7575        bool isDeleted = false;
    7676        bool isTypeFixed = false;
    77         bool isHidden = false;
    7877
    7978        DeclWithType( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
     
    314313        ptr<Type> base;
    315314        enum class EnumHiding { Visible, Hide } hide;
    316         std::vector< ast::ptr<ast::EnumInstType>> inlinedDecl; // child enums
    317 
    318315        EnumDecl( const CodeLocation& loc, const std::string& name, bool isTyped = false,
    319316                std::vector<ptr<Attribute>>&& attrs = {}, Linkage::Spec linkage = Linkage::Cforall,
     
    331328
    332329        const std::string getUnmangeldArrayName( const EnumAttribute attr ) const;
    333 
    334         unsigned calChildOffset(const std::string & childEnum) const;
    335         unsigned calChildOffset(const ast::EnumInstType * childEnum) const;
    336 
    337         bool isSubTypeOf(const ast::EnumDecl *) const;
    338330private:
    339331        EnumDecl * clone() const override { return new EnumDecl{ *this }; }
Note: See TracChangeset for help on using the changeset viewer.