Changeset 257a8f5 for src/AST/Fwd.hpp


Ignore:
Timestamp:
Feb 22, 2023, 5:47:11 PM (16 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, master
Children:
aca0d2f
Parents:
640b3df
Message:

Made some of the AST/Print helpers public.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Fwd.hpp

    r640b3df r257a8f5  
    1515
    1616#pragma once
     17
     18template<typename> struct bitfield;
    1719
    1820#include "AST/Node.hpp"
     
    147149class TranslationGlobal;
    148150
     151// For the following types, only use the using type.
     152namespace CV {
     153        struct qualifier_flags;
     154        using Qualifiers = bitfield<qualifier_flags>;
    149155}
     156namespace Function {
     157        struct spec_flags;
     158        using Specs = bitfield<spec_flags>;
     159}
     160namespace Storage {
     161        struct class_flags;
     162        using Classes = bitfield<class_flags>;
     163}
     164namespace Linkage {
     165        struct spec_flags;
     166        using Spec = bitfield<spec_flags>;
     167}
     168
     169}
Note: See TracChangeset for help on using the changeset viewer.