diff options
| author | Marc Jeanmougin <marc.jeanmougin@telecom-paristech.fr> | 2018-04-29 22:12:42 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc.jeanmougin@telecom-paristech.fr> | 2018-04-29 22:12:42 +0000 |
| commit | bba4ff6672494fab59286b50f6c645ad62a47e60 (patch) | |
| tree | c357b8add3334ef1df340d4eb433404857c27e7d /testfiles/src/object-set-test.cpp | |
| parent | Fix test (diff) | |
| download | inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.tar.gz inkscape-bba4ff6672494fab59286b50f6c645ad62a47e60.zip | |
Fix include order with clang-tidy check llvm-include-order
Diffstat (limited to 'testfiles/src/object-set-test.cpp')
| -rw-r--r-- | testfiles/src/object-set-test.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testfiles/src/object-set-test.cpp b/testfiles/src/object-set-test.cpp index 848a599c0..2fc61e916 100644 --- a/testfiles/src/object-set-test.cpp +++ b/testfiles/src/object-set-test.cpp @@ -8,17 +8,17 @@ * * Released under GNU GPL, read the file 'COPYING' for more information */ -#include <gtest/gtest.h> #include <doc-per-case-test.h> +#include <gtest/gtest.h> +#include <src/object/object-set.h> #include <src/object/sp-factory.h> -#include <src/object/sp-rect.h> #include <src/object/sp-path.h> -#include <src/object/sp-use.h> +#include <src/object/sp-rect.h> #include <src/object/sp-root.h> -#include <src/object/object-set.h> -#include <xml/node.h> -#include <src/xml/text-node.h> +#include <src/object/sp-use.h> #include <src/xml/simple-document.h> +#include <src/xml/text-node.h> +#include <xml/node.h> //#include <unistd.h> #include <2geom/transforms.h> using namespace Inkscape; |
