mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-14 08:47:57 -05:00
Reformat code with clang format
This commit is contained in:
@ -1,8 +1,9 @@
|
||||
#include "StringFileDumper.h"
|
||||
#include <regex>
|
||||
|
||||
#include "Utils/StringUtils.h"
|
||||
|
||||
#include <regex>
|
||||
|
||||
StringFileDumper::StringFileDumper(Zone* zone, std::ostream& stream)
|
||||
: AbstractTextDumper(stream),
|
||||
m_zone(zone),
|
||||
@ -14,7 +15,8 @@ StringFileDumper::StringFileDumper(Zone* zone, std::ostream& stream)
|
||||
void StringFileDumper::SetLanguageName(std::string language)
|
||||
{
|
||||
m_language_caps = std::move(language);
|
||||
for (auto& c : m_language_caps) c = toupper(c);
|
||||
for (auto& c : m_language_caps)
|
||||
c = toupper(c);
|
||||
}
|
||||
|
||||
void StringFileDumper::SetConfigFile(std::string configFile)
|
||||
|
Reference in New Issue
Block a user