acimpoeru / google-glog

Automatically exported from code.google.com/p/google-glog
Other
0 stars 0 forks source link

GLog fails to build with VS 2013 #173

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
GLog fails to build with VS 2013 because it depends on std::min and std::max 
being made available by #include <string>, which is not in the C++ standard and 
is no longer the case in VS 2013.  The problem can be fixed by adding #include 
<algorithm> to logging.cc.

Original issue reported on code.google.com by golu...@gmail.com on 1 Nov 2013 at 2:53