summaryrefslogtreecommitdiff
path: root/src/components/utils/src/custom_string.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/utils/src/custom_string.cc')
-rw-r--r--src/components/utils/src/custom_string.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/utils/src/custom_string.cc b/src/components/utils/src/custom_string.cc
index 8254a98180..7bbe5f2da8 100644
--- a/src/components/utils/src/custom_string.cc
+++ b/src/components/utils/src/custom_string.cc
@@ -31,14 +31,14 @@
*/
#include "utils/custom_string.h"
-#include <cwchar>
-#include <cstdlib>
+#include <string.h>
+#include <algorithm>
#include <clocale>
+#include <cstdlib>
+#include <cwchar>
#include <cwctype>
#include <new>
-#include <algorithm>
#include <vector>
-#include <string.h>
#include "utils/logger.h"
#include "utils/macro.h"
@@ -76,7 +76,7 @@ void ConvertWStringToLowerCase(std::wstring& str) {
std::transform(str.begin(), str.end(), str.begin(), towlower);
setlocale(LC_ALL, current_locale.c_str());
}
-}
+} // namespace
namespace utils {
namespace custom_string {