Changeset 195 in dev for trunk/abdev/BasicCompiler_Common/VariableOpe.cpp
- Timestamp:
- Jun 26, 2007, 1:48:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/VariableOpe.cpp
r193 r195 5 5 #include <LexicalScopingImpl.h> 6 6 #include <VariableImpl.h> 7 #include <NamespaceSupporter.h> 7 8 8 9 #include "../BasicCompiler_Common/common.h" … … 976 977 bool isConst = ( dwFlag & DIMFLAG_CONST ) ? true:false; 977 978 978 Variable *pVar = new VariableImpl( Smoothie::Temp::liveingNamespaceScopes, name, type, isConst );979 Variable *pVar = new VariableImpl( namespaceSupporter.GetLivingNamespaceScopes(), name, type, isConst ); 979 980 980 981 if( SubScripts[0] != -1 ){
Note:
See TracChangeset
for help on using the changeset viewer.