diff options
| author | MenTaLguY <mental@rydia.net> | 2007-03-18 18:39:34 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-03-18 18:39:34 +0000 |
| commit | 59fe6ab99727a1a58abc9c85096022fd8797ff44 (patch) | |
| tree | 38e32e15f49da5f5bccf70ed5f0494600fd183fd /src/libavoid/makepath.cpp | |
| parent | fix 64-bit issues with width of npos -- patch #1675697 from mellum (diff) | |
| download | inkscape-59fe6ab99727a1a58abc9c85096022fd8797ff44.tar.gz inkscape-59fe6ab99727a1a58abc9c85096022fd8797ff44.zip | |
add required includes for gcc 4.3 and fix a const issue -- patch #1675635
from mellum (Falk Hueffner)
(bzr r2696)
Diffstat (limited to 'src/libavoid/makepath.cpp')
| -rw-r--r-- | src/libavoid/makepath.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libavoid/makepath.cpp b/src/libavoid/makepath.cpp index 746e530bc..9a4f7beaa 100644 --- a/src/libavoid/makepath.cpp +++ b/src/libavoid/makepath.cpp @@ -31,7 +31,9 @@ #include "libavoid/connector.h" #include "libavoid/graph.h" #include "libavoid/router.h" +#include <algorithm> #include <vector> +#include <limits.h> #include <math.h> namespace Avoid { |
