Changeset 735 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Delegate.cpp
- Timestamp:
- Aug 25, 2008, 5:26:44 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Delegate.cpp
r708 r735 142 142 if( dg.GetNamespaceScopes().size() ) 143 143 { 144 std::string namespaceScopesCommandStr = "";145 std::string endNamespaceScopesCommandStr = "";144 std::string namespaceScopesCommandStr; 145 std::string endNamespaceScopesCommandStr; 146 146 BOOST_FOREACH( const std::string &namespaceStr, dg.GetNamespaceScopes() ) 147 147 { 148 148 if( namespaceScopesCommandStr.size() ) 149 149 { 150 namespaceScopesCommandStr += ":";151 endNamespaceScopesCommandStr += ":";150 namespaceScopesCommandStr += ':'; 151 endNamespaceScopesCommandStr += ':'; 152 152 } 153 153 namespaceScopesCommandStr += "Namespace " + namespaceStr;
Note:
See TracChangeset
for help on using the changeset viewer.