Changeset 208 in dev for trunk/abdev/BasicCompiler_Common/src/Symbol.cpp
- Timestamp:
- Jul 13, 2007, 2:49:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Symbol.cpp
r206 r208 52 52 return false; 53 53 } 54 bool Symbol::IsEqualSymbol( const string &fullName ) const54 bool Symbol::IsEqualSymbol( const char *fullName ) const 55 55 { 56 56 char AreaName[VN_SIZE] = ""; //オブジェクト変数 57 57 char NestName[VN_SIZE] = ""; //入れ子メンバ 58 bool isNest = SplitMemberName( fullName .c_str(), AreaName, NestName );58 bool isNest = SplitMemberName( fullName, AreaName, NestName ); 59 59 60 60 if( IsEqualSymbol( NamespaceScopes( AreaName ), NestName ) ){
Note:
See TracChangeset
for help on using the changeset viewer.