diff options
| author | Brad King <brad.king@kitware.com> | 2014-04-22 16:51:55 (GMT) |
|---|---|---|
| committer | Brad King <brad.king@kitware.com> | 2014-04-22 16:51:55 (GMT) |
| commit | e4e76f286c2eb5cfa822f89145611d02dc9d39b3 (patch) | |
| tree | 093670c695c30e0836fc24eb32365d8de7f89e30 /Source/cmDependsJavaParserHelper.h | |
| parent | 149ce5db5ed52855514e3ee3eef45295e667eed4 (diff) | |
| parent | ede0419a376cd3ddc26058f910318c76e0077bb1 (diff) | |
| download | CMake-e4e76f286c2eb5cfa822f89145611d02dc9d39b3.zip CMake-e4e76f286c2eb5cfa822f89145611d02dc9d39b3.tar.gz CMake-e4e76f286c2eb5cfa822f89145611d02dc9d39b3.tar.bz2 | |
Merge branch 'master' into osx-CFBundle-info-plist
Resolve conflict in Source/cmOSXBundleGenerator.cxx by taking
the side from 'master'.
Diffstat (limited to 'Source/cmDependsJavaParserHelper.h')
| -rw-r--r-- | Source/cmDependsJavaParserHelper.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/cmDependsJavaParserHelper.h b/Source/cmDependsJavaParserHelper.h index 9807a04..5542018 100644 --- a/Source/cmDependsJavaParserHelper.h +++ b/Source/cmDependsJavaParserHelper.h @@ -59,15 +59,15 @@ public: const char* GetCurrentCombine() { return this->CurrentCombine.c_str(); } void UpdateCombine(const char* str1, const char* str2); - std::vector<cmStdString>& GetClassesFound() { return this->ClassesFound; } + std::vector<std::string>& GetClassesFound() { return this->ClassesFound; } - std::vector<cmStdString> GetFilesProduced(); + std::vector<std::string> GetFilesProduced(); private: class CurrentClass { public: - cmStdString Name; + std::string Name; std::vector<CurrentClass>* NestedClasses; CurrentClass() { @@ -93,16 +93,16 @@ private: { (*this) = c; } - void AddFileNamesForPrinting(std::vector<cmStdString> *files, + void AddFileNamesForPrinting(std::vector<std::string> *files, const char* prefix, const char* sep); }; - cmStdString CurrentPackage; - cmStdString::size_type InputBufferPos; - cmStdString InputBuffer; + std::string CurrentPackage; + std::string::size_type InputBufferPos; + std::string InputBuffer; std::vector<char> OutputBuffer; - std::vector<cmStdString> ClassesFound; - std::vector<cmStdString> PackagesImport; - cmStdString CurrentCombine; + std::vector<std::string> ClassesFound; + std::vector<std::string> PackagesImport; + std::string CurrentCombine; std::vector<CurrentClass> ClassStack; |
