fixed for VS2013

This commit is contained in:
Antti Lukats 2015-08-21 16:53:24 +02:00
parent 02ff06c050
commit 2b8be10986
1 changed files with 20 additions and 0 deletions

View File

@ -28,6 +28,17 @@
#include <stdio.h>
#include <stdarg.h>
/*
* needed for VS2013 at least
*/
#ifdef _WIN32
#define __PRETTY_FUNCTION__ __FUNCTION__
#include <algorithm>
#endif
using std::vector;
using std::string;
@ -1128,7 +1139,16 @@ int main(int argc, char **argv)
std::ostream *osp;
if (parameters.size() >= 1 && parameters[0] != "-") {
/* VS2013 would open .bin file as ascii */
#ifdef _WIN32
ifs.open(parameters[0], std::ios::binary);
#else
ifs.open(parameters[0]);
#endif
if (!ifs.is_open())
error("Failed to open input file.\n");
isp = &ifs;