diff src/core/strings.cpp @ 76:3364fadc8a36

*: format source code
author Paper <mrpapersonic@gmail.com>
date Wed, 04 Oct 2023 01:46:33 -0400
parents fe719c109dbc
children 6f7385bd334c
line wrap: on
line diff
--- a/src/core/strings.cpp	Wed Oct 04 01:42:30 2023 -0400
+++ b/src/core/strings.cpp	Wed Oct 04 01:46:33 2023 -0400
@@ -64,8 +64,8 @@
 }
 
 /* these functions suck for i18n!...
-	but we only use them with JSON
-	stuff anyway */
+    but we only use them with JSON
+    stuff anyway */
 std::string ToUpper(const std::string& string) {
 	std::string result(string);
 	std::transform(result.begin(), result.end(), result.begin(), [](unsigned char c) { return std::toupper(c); });