Changeset 159 in dev for trunk/abdev/BasicCompiler32/NumOpe.cpp
- Timestamp:
- Jun 17, 2007, 4:44:57 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/NumOpe.cpp
r135 r159 256 256 Type leftType; 257 257 if( GetTermType( termLeft, leftType, isLiteral, &isClassName ) ){ 258 if( isClassName == false && Smoothie:: Meta::blittableTypes.IsExist( leftType ) ){258 if( isClassName == false && Smoothie::meta.blittableTypes.IsExist( leftType ) ){ 259 259 // 左側のオブジェクト部分がBlittable型のとき 260 260 … … 262 262 lstrcpy( temporary, termLeft ); 263 263 sprintf( termLeft, "%s(%s)", 264 Smoothie:: Meta::blittableTypes.Find( leftType ).GetCreateStaticMethodFullName().c_str(),264 Smoothie::meta.blittableTypes.Find( leftType ).GetCreateStaticMethodFullName().c_str(), 265 265 temporary ); 266 266 }
Note:
See TracChangeset
for help on using the changeset viewer.