Changes in src/InitTweak/InitTweak.cc [b128d3e:62a05d1]
- File:
-
- 1 edited
-
src/InitTweak/InitTweak.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/InitTweak.cc
rb128d3e r62a05d1 325 325 std::string name = getFunctionName( expr ); 326 326 assertf( name == "*?", "Unexpected untyped expression: %s", name.c_str() ); 327 assertf( ! expr->get_args().empty(), "Can not get called function from dereference with no arguments" );327 assertf( ! expr->get_args().empty(), "Can't get called function from dereference with no arguments" ); 328 328 return getCalledFunction( expr->get_args().front() ); 329 329 } … … 433 433 std::string name = getFunctionName( expr ); 434 434 assertf( name == "*?", "Unexpected untyped expression: %s", name.c_str() ); 435 assertf( ! expr->get_args().empty(), "Can not get function name from dereference with no arguments" );435 assertf( ! expr->get_args().empty(), "Can't get function name from dereference with no arguments" ); 436 436 return funcName( expr->get_args().front() ); 437 437 }
Note:
See TracChangeset
for help on using the changeset viewer.