diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-09-10 18:46:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-10 20:43:05 +0200 |
commit | e23d2be0ce41ea0a1f6d3d58d626a546c25cb516 (patch) | |
tree | 5a7704f14398859252a666dd607d47af6040705b /stoc | |
parent | 76ea287c040dcfc2fe71b0588e1701cfe1ae6940 (diff) |
using decls should come after #include
Change-Id: I058551e87bca42adede860f6f299b0f7ae2af3b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156798
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/corereflection/crefl.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx index 5fb675a03a4b..1f4562181abb 100644 --- a/stoc/source/corereflection/crefl.cxx +++ b/stoc/source/corereflection/crefl.cxx @@ -28,6 +28,7 @@ #include <com/sun/star/uno/XComponentContext.hpp> #include <o3tl/any.hxx> #include <uno/lbnames.h> +#include "base.hxx" using namespace css; using namespace css::uno; @@ -36,10 +37,6 @@ using namespace css::reflection; using namespace cppu; using namespace osl; - -#include "base.hxx" - - namespace stoc_corefl { |