diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-26 01:30:48 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-26 01:30:48 +0300 |
commit | ad6cee2e8bacebd876eb9171d0ea3f5e787746f9 (patch) | |
tree | 06c3a51e8b5f94c2a205971e330a3c4780a0c628 /tests/base64/driver.cxx | |
parent | 122781fb093a46804d33b26e01233925ba4cd965 (diff) |
Add support for VC15
Diffstat (limited to 'tests/base64/driver.cxx')
-rw-r--r-- | tests/base64/driver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/base64/driver.cxx b/tests/base64/driver.cxx index a65ddbb..05fc359 100644 --- a/tests/base64/driver.cxx +++ b/tests/base64/driver.cxx @@ -24,9 +24,9 @@ encode (const string& i, const string& o) { is.seekg (0); - // VC 19 seekg() doesn't clear eofbit. + // VC15 seekg() doesn't clear eofbit. // -#if defined(_MSC_VER) && _MSC_VER <= 1900 +#if defined(_MSC_VER) && _MSC_VER <= 1910 is.clear (); #endif |