diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-04-13 14:54:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-04-13 14:54:50 +0200 |
commit | 53e82a43a563992986c50089f6af765fa5cff526 (patch) | |
tree | 80a095091956437cd7dd9d6a893009dcfe456fff /tests/base64/driver.cxx | |
parent | 26efe301f4a7b7e4bf97b0d3468037b7e259e1db (diff) |
Add workarounds for VC15u7
Diffstat (limited to 'tests/base64/driver.cxx')
-rw-r--r-- | tests/base64/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/base64/driver.cxx b/tests/base64/driver.cxx index 1aa5b42..a9a6313 100644 --- a/tests/base64/driver.cxx +++ b/tests/base64/driver.cxx @@ -40,7 +40,7 @@ encode (const string& i, const string& o) // VC15 seekg() doesn't clear eofbit. // -#if defined(_MSC_VER) && _MSC_VER <= 1913 +#if defined(_MSC_VER) && _MSC_VER <= 1914 is.clear (); #endif |