summaryrefslogtreecommitdiffstats
path: root/src/debug
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-03-18 18:39:34 +0000
committermental <mental@users.sourceforge.net>2007-03-18 18:39:34 +0000
commit59fe6ab99727a1a58abc9c85096022fd8797ff44 (patch)
tree38e32e15f49da5f5bccf70ed5f0494600fd183fd /src/debug
parentfix 64-bit issues with width of npos -- patch #1675697 from mellum (diff)
downloadinkscape-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/debug')
-rw-r--r--src/debug/demangle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/demangle.cpp b/src/debug/demangle.cpp
index 79d0275bf..0da7cfd63 100644
--- a/src/debug/demangle.cpp
+++ b/src/debug/demangle.cpp
@@ -40,7 +40,7 @@ char const *demangle_helper(char const *name) {
}
struct string_less_than {
- bool operator()(char const *a, char const *b) {
+ bool operator()(char const *a, char const *b) const {
return ( strcmp(a, b) < 0 );
}
};