Changeset 186 in dev for trunk/jenga/src/smoothie/Procedure.cpp
- Timestamp:
- Jun 25, 2007, 4:22:39 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jenga/src/smoothie/Procedure.cpp
r181 r186 20 20 { 21 21 if( !pParentClass ){ 22 throw SmoothieException();22 SmoothieException::Throw(); 23 23 } 24 24 return pParentClass->GetNamespaceScopes(); … … 27 27 { 28 28 if( !pParentClass ){ 29 throw SmoothieException();29 SmoothieException::Throw(); 30 30 } 31 31 return pParentClass->GetImportedNamespaces(); … … 33 33 bool UserProc::IsEqualSymbol( const NamespaceScopes &namespaceScopes, const string &name ) const 34 34 { 35 throw SmoothieException();35 SmoothieException::Throw(); 36 36 return false; 37 37 }
Note:
See TracChangeset
for help on using the changeset viewer.