Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Commit

Permalink
Fixing compilation errors on Windows/VisualStudio (msvc2013/Win64 spe…
Browse files Browse the repository at this point in the history
…cifically) - missing <algorithm> include for std::min and std::max
  • Loading branch information
BrandonTheHamm committed Mar 26, 2014
1 parent 6987f03 commit 069a6c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/osgPPU/UnitInMipmapOut.cpp
Expand Up @@ -9,7 +9,7 @@
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesse General Public License for more details. *
* GNU Lesser General Public License for more details. *
* *
* The full license is in LICENSE file included with this distribution. *
***************************************************************************/
Expand All @@ -18,6 +18,7 @@
#include <osgPPU/Processor.h>

#include <osg/Texture2D>
#include <algorithm>

namespace osgPPU
{
Expand Down
1 change: 1 addition & 0 deletions src/osgPPU/UnitMipmapInMipmapOut.cpp
Expand Up @@ -18,6 +18,7 @@
#include <osgPPU/Processor.h>

#include <osg/Texture2D>
#include <algorithm>

namespace osgPPU
{
Expand Down

0 comments on commit 069a6c5

Please sign in to comment.