Changeset 392 in dev for trunk/abdev/BasicCompiler32/Compile_Var.cpp
- Timestamp:
- Feb 20, 2008, 7:44:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Var.cpp
r370 r392 1128 1128 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 1129 1129 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 1130 pVar-> bLiving=TRUE;1130 pVar->isLiving = true; 1131 1131 1132 1132 //エラー用 … … 1163 1163 pVar->SetScopeLevel( compiler.codeGenerator.lexicalScopes.GetNowLevel() ); 1164 1164 pVar->SetScopeStartAddress( compiler.codeGenerator.lexicalScopes.GetStartAddress() ); 1165 pVar-> bLiving=TRUE;1165 pVar->isLiving = true; 1166 1166 1167 1167 if(InitBuf[0]){
Note:
See TracChangeset
for help on using the changeset viewer.