quiet some MSVC warnings

This commit is contained in:
Michael Davidsaver
2020-04-12 15:00:30 -07:00
parent b0eecb949f
commit 8c7654f492
6 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ void convertCast(const void *sbase, void *dbase, size_t count)
auto S = static_cast<const Src*>(sbase);
auto D = static_cast<Dest*>(dbase);
for(auto i : range(count))
D[i] = S[i];
D[i] = Dest(S[i]);
}
void printValue(std::string& dest, const bool& src)