[icestorm] 48/75: cleaned up VS2013 fixes

Ruben Undheim rubund-guest at moszumanska.debian.org
Wed Oct 7 15:52:08 UTC 2015


This is an automated email from the git hooks/post-receive script.

rubund-guest pushed a commit to branch master
in repository icestorm.

commit d094abca1c1c2d21b2b92dc743e2d5e767a97153
Author: Clifford Wolf <clifford at clifford.at>
Date:   Fri Aug 21 19:50:52 2015 +0200

    cleaned up VS2013 fixes
---
 icepack/icepack.cc | 18 ++----------------
 1 file changed, 2 insertions(+), 16 deletions(-)

diff --git a/icepack/icepack.cc b/icepack/icepack.cc
index 93a4fa9..6a9e05a 100644
--- a/icepack/icepack.cc
+++ b/icepack/icepack.cc
@@ -22,20 +22,15 @@
 #include <string>
 #include <fstream>
 #include <iostream>
+#include <algorithm>
 #include <sstream>
 #include <cstdint>
 
 #include <stdio.h>
 #include <stdarg.h>
 
-/*
- * needed for VS2013 at least
- */
 #ifdef _WIN32
-
 #define __PRETTY_FUNCTION__ __FUNCTION__
-#include <algorithm>
-
 #endif
 
 
@@ -1139,16 +1134,7 @@ 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;
@@ -1157,7 +1143,7 @@ int main(int argc, char **argv)
 	}
 
 	if (parameters.size() >= 2 && parameters[1] != "-") {
-		ofs.open(parameters[1]);
+		ofs.open(parameters[1], std::ios::binary);
 		if (!ofs.is_open())
 			error("Failed to open output file.\n");
 		osp = &ofs;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/icestorm.git



More information about the debian-science-commits mailing list