Changeset 206 in dev for trunk/abdev/BasicCompiler32/Compile_Calc.cpp
- Timestamp:
- Jul 12, 2007, 2:58:26 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Calc.cpp
r193 r206 1 #include "stdafx.h" 2 1 3 #include <jenga/include/smoothie/Smoothie.h> 2 4 #include <jenga/include/smoothie/LexicalAnalysis.h> … … 481 483 } 482 484 else{ 483 if(GetConstHash(variable)){ 485 if( compiler.GetMeta().GetGlobalConsts().IsExist(variable) 486 || compiler.GetMeta().GetGlobalConstMacros().IsExist(variable) ) 487 { 484 488 //定数リストに該当したとき 485 489 SetError(1,NULL,cp); … … 626 630 if( varType.IsObject() && compiler.GetMeta().GetBlittableTypes().IsExist( calcType ) ){ 627 631 // Blittable型をオブジェクトとして扱う 628 vector< UserProc *> userProcs;632 vector<const UserProc *> userProcs; 629 633 compiler.GetMeta().GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 630 634 if( userProcs.size() != 1 ){ … … 632 636 return; 633 637 } 634 UserProc *pUserProc = userProcs[0];638 const UserProc *pUserProc = userProcs[0]; 635 639 636 640 // call System.[TypeClass]._Create
Note:
See TracChangeset
for help on using the changeset viewer.