Changeset 297 in dev
- Timestamp:
- Aug 23, 2007, 3:49:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Class.cpp
r296 r297 188 188 } 189 189 190 char className[VN_SIZE]; 191 std::vector<std::string> typeParameters; 192 SplitGenericClassInstance( temporary, className, typeParameters ); 193 190 194 //継承元クラスを取得 191 const CClass *pInheritsClass = compiler.GetObjectModule().meta.GetClasses().Find( temporary);195 const CClass *pInheritsClass = compiler.GetObjectModule().meta.GetClasses().Find(className); 192 196 if( !pInheritsClass ){ 193 SmoothieException::Throw(106, temporary,nowLine);197 SmoothieException::Throw(106,className,nowLine); 194 198 return false; 195 199 } … … 236 240 } 237 241 242 char className[VN_SIZE]; 243 std::vector<std::string> typeParameters; 244 SplitGenericClassInstance( temporary, className, typeParameters ); 245 238 246 //継承元クラスを取得 239 const CClass *pInheritsClass = compiler.GetObjectModule().meta.GetClasses().Find( temporary);247 const CClass *pInheritsClass = compiler.GetObjectModule().meta.GetClasses().Find(className); 240 248 if( !pInheritsClass ){ 241 SmoothieException::Throw(106, temporary,nowLine);249 SmoothieException::Throw(106,className,nowLine); 242 250 return false; 243 251 }
Note:
See TracChangeset
for help on using the changeset viewer.