Changes in src/Common/SemanticError.cpp [c92bdcc:16ba4897]
- File:
-
- 1 edited
-
src/Common/SemanticError.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/SemanticError.cpp
rc92bdcc r16ba4897 88 88 } 89 89 90 bool SemanticErrorException::isEmpty() const { 91 return errors.empty(); 90 void SemanticErrorException::throwIfNonEmpty() { 91 if ( !errors.empty() ) { 92 throw *this; 93 } 92 94 } 93 95
Note:
See TracChangeset
for help on using the changeset viewer.