code reformatted .

This commit is contained in:
Zero Fanker 2024-04-16 20:51:17 -04:00
parent 76d336504f
commit 1de6ad56c2
265 changed files with 18240 additions and 21591 deletions

View file

@ -48,9 +48,9 @@ public:
static CString ToString(const T& origin);// { static_assert(false, "T must have specialized implementations!"); }
template<>
static CString ToString<bool>(const bool& origin)
static CString ToString<bool>(const bool& origin)
{
static CString result[] = { "no", "yes" };
static CString result[] = { "no", "yes" };
return result[origin];
}