diff --git a/tests/logs/.gitignore b/tests/logs/.gitignore deleted file mode 100644 index 3abf6dea..00000000 --- a/tests/logs/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.txt -*.log diff --git a/tests/tests.vcxproj b/tests/tests.vcxproj index 2e72e181..f05c1628 100644 --- a/tests/tests.vcxproj +++ b/tests/tests.vcxproj @@ -26,7 +26,7 @@ Application true - v120 + v140 MultiByte @@ -38,7 +38,7 @@ Application false - v120 + v140 true MultiByte diff --git a/tests/utils.cpp b/tests/utils.cpp index 751ff820..9fe8b162 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -41,5 +41,5 @@ std::size_t get_filesize(const std::string& filename) if (!ifs) throw std::runtime_error("Failed open file "); - return ifs.tellg(); + return static_cast(ifs.tellg()); }