fix conversions test with msvs 2014
This commit is contained in:
parent
c7f58ee64c
commit
3004dfc8c1
1 changed files with 2 additions and 2 deletions
|
@ -5,13 +5,13 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
||||||
unsigned int old = _set_output_format(_TWO_DIGIT_EXPONENT);
|
unsigned int old = _set_output_format(_TWO_DIGIT_EXPONENT);
|
||||||
#endif
|
#endif
|
||||||
std::vector<std::string> args;
|
std::vector<std::string> args;
|
||||||
|
|
Loading…
Add table
Reference in a new issue