Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/SemanticError.cpp

    rc92bdcc r16ba4897  
    8888}
    8989
    90 bool SemanticErrorException::isEmpty() const {
    91         return errors.empty();
     90void SemanticErrorException::throwIfNonEmpty() {
     91        if ( !errors.empty() ) {
     92                throw *this;
     93        }
    9294}
    9395
Note: See TracChangeset for help on using the changeset viewer.