diff options
| author | Peter Moulder <peter.moulder@monash.edu> | 2008-06-05 06:28:20 +0000 |
|---|---|---|
| committer | pjrm <pjrm@users.sourceforge.net> | 2008-06-05 06:28:20 +0000 |
| commit | 2dfebc67705273fa4fbd319a9bccbd9b43cead12 (patch) | |
| tree | 5bf9ce0b50807473c9a4a8e6a62d149c54b33328 /src/dom | |
| parent | Fix expression whose behaviour is undefined in C++. N.B. This “fix” invo... (diff) | |
| download | inkscape-2dfebc67705273fa4fbd319a9bccbd9b43cead12.tar.gz inkscape-2dfebc67705273fa4fbd319a9bccbd9b43cead12.zip | |
fix compile with g++-4.3.
(bzr r5810)
Diffstat (limited to 'src/dom')
| -rw-r--r-- | src/dom/svgimpl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dom/svgimpl.cpp b/src/dom/svgimpl.cpp index 6b2a7fe70..cc73bd6f6 100644 --- a/src/dom/svgimpl.cpp +++ b/src/dom/svgimpl.cpp @@ -28,6 +28,8 @@ */ #include "svgimpl.h" +#include <cstring> +using std::strcmp; /** * This is the .cpp side of the SVG implementations classes. Note that many |
