diff options
author | Kargatum <dowlandtop@yandex.com> | 2021-01-09 17:59:50 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 11:59:50 +0100 |
commit | ea93a5c1a159912fac22dae9659e72b60f197f87 (patch) | |
tree | 7af4c84e0bcfc535ecba7cc4839863ca38121dae /src/common/Common.cpp | |
parent | 57aa46244df18a0ad075d1982639e56ff4c8dcae (diff) |
feat(CI/Codestyle): added codestyle check (#3668)
Diffstat (limited to 'src/common/Common.cpp')
-rw-r--r-- | src/common/Common.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/Common.cpp b/src/common/Common.cpp index d117554061..1d092f407f 100644 --- a/src/common/Common.cpp +++ b/src/common/Common.cpp @@ -35,4 +35,3 @@ void CleanStringForMysqlQuery(std::string& str) while ((n = str.find('"')) != str.npos) str.erase(n, 1); while ((n = str.find('\'')) != str.npos) str.erase(n, 1); } - |