From 0a840edcc19ad1b8bb1525717d91ce8ade0c0092 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 18 Nov 2016 10:10:48 +0200 Subject: includes should be at the top of the file not randomly scattered through the code found with something like: git ls-files *.cpp | xargs grep -Pzl "(?s){.*#include" Change-Id: I9c242fa4ef99e8677f2800d7ec9f16d16e488351 Reviewed-on: https://gerrit.libreoffice.org/30952 Tested-by: Jenkins Reviewed-by: Noel Grandin --- salhelper/qa/test_api.cxx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'salhelper/qa') diff --git a/salhelper/qa/test_api.cxx b/salhelper/qa/test_api.cxx index 33a3c9400cba..20626d9f12eb 100644 --- a/salhelper/qa/test_api.cxx +++ b/salhelper/qa/test_api.cxx @@ -21,6 +21,15 @@ #include +#include "osl/mutex.hxx" +#include "salhelper/condition.hxx" +#include "salhelper/dynload.hxx" +#include "salhelper/simplereferenceobject.hxx" +#include +#include +#include +#include + namespace salhelper { class Condition; class ConditionModifier; @@ -48,15 +57,6 @@ std::type_info const & getSimpleReferenceObjectTypeInfo() } -#include "osl/mutex.hxx" -#include "salhelper/condition.hxx" -#include "salhelper/dynload.hxx" -#include "salhelper/simplereferenceobject.hxx" -#include -#include -#include -#include - namespace { class DerivedCondition: public salhelper::Condition { -- cgit