Merge pull request #6 from AnttiLukats/master

fixed for VS2013
This commit is contained in:
Clifford Wolf 2015-08-21 19:47:11 +02:00
commit 24f521e1c4
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;