Changes in src/Common/ErrorObjects.h [610354a:9d1e3f7]
- File:
-
- 1 edited
-
src/Common/ErrorObjects.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/ErrorObjects.h
r610354a r9d1e3f7 46 46 std::list< error > errors; 47 47 }; 48 49 void SemanticWarningImpl( CodeLocation location, std::string error ); 50 51 template< typename T > 52 static inline void SemanticWarningImpl( const T * obj, const std::string & error ) { 53 SemanticWarning( obj->location, toString( error, obj ) ); 54 } 55 56 template< typename T > 57 static inline void SemanticWarningImpl( CodeLocation location, const T * obj, const std::string & error ) { 58 SemanticWarningImpl( location, toString( error, obj ) ); 59 }
Note:
See TracChangeset
for help on using the changeset viewer.