diff options
author | Saribro <Saribro@users.noreply.github.com> | 2015-12-10 11:41:17 +0100 |
---|---|---|
committer | Saribro <Saribro@users.noreply.github.com> | 2015-12-10 11:41:17 +0100 |
commit | 14d73dccc726cef568d2dafd68564c6a227c7b28 (patch) | |
tree | e5076d68f510f0e083f93f2fea07e55b5264ab67 | |
parent | 02a2d5ff3676e40bf050e21442f75e39c9308bf1 (diff) |
Fix VS2015 compilation.
VS2015 can't find std::min/max without additional header.
-rw-r--r-- | pngdetail.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pngdetail.cpp b/pngdetail.cpp index a5465bf..d62b6dd 100644 --- a/pngdetail.cpp +++ b/pngdetail.cpp @@ -49,6 +49,7 @@ everything except huge output: #include <iostream> #include <iomanip> #include <sstream> +#include <algorithm> struct Options { |