- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/ForallPointerDecay.cpp
r14c0f7b rb7c53a9d 214 214 if ( dynamic_cast< const ast::FunctionType * >( type ) ) return; 215 215 SemanticError( obj->location, 216 toCString( "operator ", obj->name.c_str(), 217 " is nota function or function pointer." ) );216 toCString( "operator ", obj->name.c_str(), " is not " 217 "a function or function pointer." ) ); 218 218 } 219 219 }; … … 237 237 ast::Pass<AssertionFunctionFixer>::run( transUnit ); 238 238 ast::Pass<OperatorChecker>::run( transUnit ); 239 }240 241 void fixUniqueIds( ast::TranslationUnit & transUnit ) {242 239 ast::Pass<UniqueFixCore>::run( transUnit ); 243 240 }
Note:
See TracChangeset
for help on using the changeset viewer.