summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-06-05 18:57:35 +0000
committerishmal <ishmal@users.sourceforge.net>2008-06-05 18:57:35 +0000
commitecbe826976ee82dd0c4ea0d3ad0279abb867d095 (patch)
treecdd59b1f8f834ca35f854060fb1d34332de14f48 /buildtool.cpp
parentoptimization: don't copy SPCurve when transforming it, do this in place (diff)
downloadinkscape-ecbe826976ee82dd0c4ea0d3ad0279abb867d095.tar.gz
inkscape-ecbe826976ee82dd0c4ea0d3ad0279abb867d095.zip
include <algorithm> for std::sort
(bzr r5820)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index 471a8194c..94a47e7be 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -38,7 +38,7 @@
*
*/
-#define BUILDTOOL_VERSION "BuildTool v0.9.3"
+#define BUILDTOOL_VERSION "BuildTool v0.9.4"
#include <stdio.h>
#include <fcntl.h>
@@ -54,6 +54,8 @@
#include <map>
#include <set>
#include <vector>
+#include <algorithm>
+
#ifdef __WIN32__
#include <windows.h>