Changeset 064cb18 for src/SymTab
- Timestamp:
- Feb 3, 2017, 4:02:13 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- dbe8f244
- Parents:
- a9fc180
- git-author:
- Rob Schluntz <rschlunt@…> (02/03/17 15:56:16)
- git-committer:
- Rob Schluntz <rschlunt@…> (02/03/17 16:02:13)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Mangler.cc
ra9fc180 r064cb18 172 172 for ( std::list< Expression* >::const_iterator param = params.begin(); param != params.end(); ++param ) { 173 173 TypeExpr *paramType = dynamic_cast< TypeExpr* >( *param ); 174 assert (paramType && "Aggregate parameters should be type expressions");174 assertf(paramType, "Aggregate parameters should be type expressions: %s", toString(*param).c_str()); 175 175 maybeAccept( paramType->get_type(), *this ); 176 176 }
Note: See TracChangeset
for help on using the changeset viewer.