Changes in src/Validate/Autogen.cpp [fb4dc28:20737104]
- File:
-
- 1 edited
-
src/Validate/Autogen.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/Autogen.cpp
rfb4dc28 r20737104 39 39 #include "InitTweak/GenInit.h" // for fixReturnStatements 40 40 #include "InitTweak/InitTweak.h" // for isAssignment, isCopyConstructor 41 #include "SymTab/GenImplicitCall.hpp" // for genImplicitCall42 41 #include "SymTab/Mangler.h" // for Mangler 43 42 #include "CompilationState.h" … … 424 423 for ( unsigned int index = 0 ; index < fields ; ++index ) { 425 424 auto member = aggr->members[index].strict_as<ast::DeclWithType>(); 426 if ( ast::isUnnamedBitfield(425 if ( SymTab::isUnnamedBitfield( 427 426 dynamic_cast<const ast::ObjectDecl *>( member ) ) ) { 428 427 if ( index == fields - 1 ) { … … 600 599 // Not sure why it could be null. 601 600 // 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 ) ) { 603 602 continue; 604 603 // Matching Parameter: Initialize the field by copy.
Note:
See TracChangeset
for help on using the changeset viewer.