Changeset 461 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Class_Collect.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/Class_Collect.cpp
r424 r461 1 1 #include "stdafx.h" 2 3 #include <jenga/include/smoothie/Smoothie.h>4 #include <jenga/include/smoothie/SmoothieException.h>5 2 6 3 #include <Source.h> … … 105 102 else if( source[i] == 1 && source[i+1] == ESC_ENDNAMESPACE ){ 106 103 if( namespaceScopes.size() <= 0 ){ 107 S moothieException::Throw(12, "End Namespace", i );104 SetError(12, "End Namespace", i ); 108 105 } 109 106 else{ … … 124 121 if( !compiler.GetNamespaceSupporter().ImportsNamespace( temporary ) ) 125 122 { 126 S moothieException::Throw(64,temporary,i );123 SetError(64,temporary,i ); 127 124 } 128 125 … … 306 303 if( !compiler.GetNamespaceSupporter().ImportsNamespace( temporary ) ) 307 304 { 308 S moothieException::Throw(64,temporary,i );305 SetError(64,temporary,i ); 309 306 } 310 307
Note:
See TracChangeset
for help on using the changeset viewer.