Changeset 198 in dev for trunk/abdev/BasicCompiler64/Compile_Calc.cpp
- Timestamp:
- Jun 27, 2007, 2:41:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Calc.cpp
r183 r198 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" … … 230 232 } 231 233 232 if( varType.IsObject() && Smoothie::GetMeta().blittableTypes.IsExist( calcType ) ){234 if( varType.IsObject() && compiler.GetMeta().GetBlittableTypes().IsExist( calcType ) ){ 233 235 // Blittable型をオブジェクトとして扱う 234 236 vector<UserProc *> userProcs; 235 Smoothie::GetMeta().blittableTypes.GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );237 compiler.GetMeta().GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 236 238 if( userProcs.size() != 1 ){ 237 239 SetError();
Note:
See TracChangeset
for help on using the changeset viewer.