From 42486dde49d9a9494c1f4889bbccde1f5aecd91e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 29 Jun 2016 14:46:39 +0200 Subject: move #includes to top of file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit instead of being randomly embedded somewhere deep inside the CXX code. Found with: git grep -nP '^#include' -- *.cxx | sort -g -k 2 -t : Change-Id: I9ee432d3b665ecb6ec600bd51cc4b735a1b1127a Reviewed-on: https://gerrit.libreoffice.org/26764 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- i18npool/source/localedata/localedata.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'i18npool') diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx index 5d42f0152c04..5c7d4f8100f9 100644 --- a/i18npool/source/localedata/localedata.cxx +++ b/i18npool/source/localedata/localedata.cxx @@ -17,6 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include +#include #include #include #include @@ -1299,9 +1301,6 @@ LocaleDataImpl::getContinuousNumberingLevels( const lang::Locale& rLocale ) thro // OutlineNumbering helper class -#include -#include - namespace com{ namespace sun{ namespace star{ namespace lang { struct Locale; }}}} -- cgit