- File:
-
- 1 edited
-
src/Parser/DeclarationNode.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/DeclarationNode.cpp
r16ba4897 rd1fbc56e 829 829 } // for 830 830 831 errors.throwIfNonEmpty(); 831 if ( ! errors.isEmpty() ) { 832 throw errors; 833 } // if 832 834 } // buildList 833 835 … … 877 879 } // for 878 880 879 errors.throwIfNonEmpty(); 881 if ( ! errors.isEmpty() ) { 882 throw errors; 883 } // if 880 884 } // buildList 881 885 … … 893 897 } // for 894 898 895 errors.throwIfNonEmpty(); 899 if ( ! errors.isEmpty() ) { 900 throw errors; 901 } // if 896 902 } // buildTypeList 897 903
Note:
See TracChangeset
for help on using the changeset viewer.