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