Changeset 159 in dev for trunk/abdev/BasicCompiler64/Compile_Calc.cpp
- Timestamp:
- Jun 17, 2007, 4:44:57 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Calc.cpp
r136 r159 227 227 } 228 228 229 if( varType.IsObject() && Smoothie:: Meta::blittableTypes.IsExist( calcType ) ){229 if( varType.IsObject() && Smoothie::meta.blittableTypes.IsExist( calcType ) ){ 230 230 // Blittable型をオブジェクトとして扱う 231 231 vector<UserProc *> userProcs; 232 Smoothie:: Meta::blittableTypes.GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );232 Smoothie::meta.blittableTypes.GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 233 233 if( userProcs.size() != 1 ){ 234 234 SetError();
Note:
See TracChangeset
for help on using the changeset viewer.