Changeset 193 in dev for trunk/abdev/BasicCompiler32/Compile_Calc.cpp
- Timestamp:
- Jun 26, 2007, 5:04:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Calc.cpp
r183 r193 1 1 #include <jenga/include/smoothie/Smoothie.h> 2 2 #include <jenga/include/smoothie/LexicalAnalysis.h> 3 4 #include <Compiler.h> 3 5 4 6 #include "../BasicCompiler_Common/common.h" … … 622 624 623 625 624 if( varType.IsObject() && Smoothie::GetMeta().blittableTypes.IsExist( calcType ) ){626 if( varType.IsObject() && compiler.GetMeta().GetBlittableTypes().IsExist( calcType ) ){ 625 627 // Blittable型をオブジェクトとして扱う 626 628 vector<UserProc *> userProcs; 627 Smoothie::GetMeta().blittableTypes.GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );629 compiler.GetMeta().GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 628 630 if( userProcs.size() != 1 ){ 629 631 SetError();
Note:
See TracChangeset
for help on using the changeset viewer.