[cl;ang-tidy] Don't initialize strings

Found with readability-redundant-string-init

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2019-09-27 20:25:10 -07:00
committed by Paul Beckingham
parent cc6826fc3a
commit 426e067f43
4 changed files with 10 additions and 10 deletions

View File

@@ -89,7 +89,7 @@
#define STRING_VARIANT_MOD_ZERO "Cannot modulo zero"
#define STRING_VARIANT_SQRT_NEG "Cannot take the square root of a negative number."
std::string Variant::dateFormat = "";
std::string Variant::dateFormat;
bool Variant::searchCaseSensitive = true;
bool Variant::searchUsingRegex = true;