Changeset 183 in dev for trunk/abdev/BasicCompiler64/Compile_Calc.cpp
- Timestamp:
- Jun 24, 2007, 6:50:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Calc.cpp
r159 r183 1 #include <jenga/include/smoothie/Smoothie.h> 2 #include <jenga/include/smoothie/LexicalAnalysis.h> 3 1 4 #include "../BasicCompiler_Common/common.h" 2 5 #include "Opcode.h" … … 227 230 } 228 231 229 if( varType.IsObject() && Smoothie:: meta.blittableTypes.IsExist( calcType ) ){232 if( varType.IsObject() && Smoothie::GetMeta().blittableTypes.IsExist( calcType ) ){ 230 233 // Blittable型をオブジェクトとして扱う 231 234 vector<UserProc *> userProcs; 232 Smoothie:: meta.blittableTypes.GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );235 Smoothie::GetMeta().blittableTypes.GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 233 236 if( userProcs.size() != 1 ){ 234 237 SetError();
Note:
See TracChangeset
for help on using the changeset viewer.