Changeset 318 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Sep 9, 2007, 1:09:00 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/error.cpp
r305 r318 169 169 if(num==104) sprintf(msg,"\"%s\" 参照方法が違います。",tempKeyWord); 170 170 if(num==105) sprintf(msg,"\"%s\" 自身のクラスを継承することはできません。",tempKeyWord); 171 if(num==106) sprintf(msg,"\"%s\" クラスは定義されていません。",tempKeyWord);171 if(num==106) sprintf(msg,"\"%s\" 存在しないクラスです。",tempKeyWord); 172 172 if(num==107) sprintf(msg,"Privateメンバ \"%s\" にアクセスすることはできません。",tempKeyWord); 173 173 if(num==108) sprintf(msg,"Protectedメンバ \"%s\" にアクセスすることはできません。",tempKeyWord); -
trunk/abdev/BasicCompiler_Common/include/ver.h
r312 r318 6 6 // バージョン付加文字列 7 7 #ifdef _AMD64_ 8 #define VER_INFO "(x64) (rev.32 0)"8 #define VER_INFO "(x64) (rev.322)" 9 9 #else 10 #define VER_INFO "(rev.32 0)"10 #define VER_INFO "(rev.322)" 11 11 #endif -
trunk/abdev/BasicCompiler_Common/src/Compiler.cpp
r301 r318 36 36 if( !pGenericClass ) 37 37 { 38 Jenga::Throw( "StringToType内のジェネリクスクラス取得部分でpGenericClassがNULL" ); 38 extern int cp; 39 SetError(106, className, cp ); 40 return false; 39 41 } 40 42
Note:
See TracChangeset
for help on using the changeset viewer.