Changeset 461 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/NamespaceSupporter.cpp
- Timestamp:
- Mar 23, 2008, 11:35:33 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/NamespaceSupporter.cpp
r402 r461 1 1 #include "stdafx.h" 2 3 #include <jenga/include/smoothie/SmoothieException.h>4 2 5 3 #include <Compiler.h> … … 48 46 else if( source[i] == 1 && source[i+1] == ESC_ENDNAMESPACE ){ 49 47 if( namespaceScopes.size() <= 0 ){ 50 S moothieException::Throw( 12, "End Namespace", i );48 SetError( 12, "End Namespace", i ); 51 49 isSuccessful = false; 52 50 } … … 61 59 62 60 if( namespaceScopes.size() > 0 ){ 63 S moothieException::Throw( 63);61 SetError( 63, NULL, cp ); 64 62 isSuccessful = false; 65 63 }
Note:
See TracChangeset
for help on using the changeset viewer.