diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2017-02-05 16:04:35 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2017-02-05 16:04:35 +0000 |
| commit | 349536d49558ec5841e799eb33a4cbbb3fa9722d (patch) | |
| tree | 7e6a4cb6e7ecff3a3d81e99a8c3c3a246839a195 /src/style.cpp | |
| parent | CMake: Supress status messages for install target on Windows (considerably sp... (diff) | |
| download | inkscape-349536d49558ec5841e799eb33a4cbbb3fa9722d.tar.gz inkscape-349536d49558ec5841e799eb33a4cbbb3fa9722d.zip | |
Fix C++11 errors and warnings with g++-7
Fixed bugs:
- https://launchpad.net/bugs/1660992
(bzr r15477)
Diffstat (limited to 'src/style.cpp')
| -rw-r--r-- | src/style.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/style.cpp b/src/style.cpp index 86377db08..b65cb26cb 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -23,10 +23,15 @@ #include <config.h> #endif +#include "style.h" + #include <cstring> #include <string> #include <algorithm> +#include <glibmm/regex.h> + +#include "bad-uri-exception.h" #include "libcroco/cr-sel-eng.h" #include "xml/croco-node-iface.h" @@ -38,14 +43,11 @@ #include "uri-references.h" #include "uri.h" #include "sp-paint-server.h" -#include "style.h" #include "svg/css-ostringstream.h" #include "xml/simple-document.h" #include "util/units.h" #include "preferences.h" -#include <glibmm/regex.h> - using Inkscape::CSSOStringStream; using std::vector; |
