Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Validate/Autogen.cpp

    rfb4dc28 r20737104  
    3939#include "InitTweak/GenInit.h"     // for fixReturnStatements
    4040#include "InitTweak/InitTweak.h"   // for isAssignment, isCopyConstructor
    41 #include "SymTab/GenImplicitCall.hpp"  // for genImplicitCall
    4241#include "SymTab/Mangler.h"        // for Mangler
    4342#include "CompilationState.h"
     
    424423        for ( unsigned int index = 0 ; index < fields ; ++index ) {
    425424                auto member = aggr->members[index].strict_as<ast::DeclWithType>();
    426                 if ( ast::isUnnamedBitfield(
     425                if ( SymTab::isUnnamedBitfield(
    427426                                dynamic_cast<const ast::ObjectDecl *>( member ) ) ) {
    428427                        if ( index == fields - 1 ) {
     
    600599                // Not sure why it could be null.
    601600                // Don't make a function for a parameter that is an unnamed bitfield.
    602                 if ( nullptr == field || ast::isUnnamedBitfield( field ) ) {
     601                if ( nullptr == field || SymTab::isUnnamedBitfield( field ) ) {
    603602                        continue;
    604603                // Matching Parameter: Initialize the field by copy.
Note: See TracChangeset for help on using the changeset viewer.