Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Fwd.hpp

    r71806e0 rc86b08d  
    1515
    1616#pragma once
     17
     18template<typename> struct bitfield;
    1719
    1820#include "AST/Node.hpp"
     
    5658class FinallyClause;
    5759class SuspendStmt;
     60class WhenClause;
    5861class WaitForStmt;
    5962class WaitForClause;
     63class WaitUntilStmt;
    6064class WithStmt;
    6165class DeclStmt;
     
    147151class TranslationGlobal;
    148152
     153// For the following types, only use the using type.
     154namespace CV {
     155        struct qualifier_flags;
     156        using Qualifiers = bitfield<qualifier_flags>;
    149157}
     158namespace Function {
     159        struct spec_flags;
     160        using Specs = bitfield<spec_flags>;
     161}
     162namespace Storage {
     163        struct class_flags;
     164        using Classes = bitfield<class_flags>;
     165}
     166namespace Linkage {
     167        struct spec_flags;
     168        using Spec = bitfield<spec_flags>;
     169}
     170
     171}
Note: See TracChangeset for help on using the changeset viewer.