diff options
author | Uday Sharma <itsudayy@gmail.com> | 2023-02-11 23:04:38 +0530 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2023-03-16 09:25:32 +0000 |
commit | 0d8d0fb8932652f182c46805d5cf3ae7f6ebadd5 (patch) | |
tree | bed8bf4755e21466e23bb3585819349c088f77d7 /helpcompiler/source | |
parent | c7aee57724828c4b9d67deb930f09c494ff4d811 (diff) |
tdf#143148: Use pragma once instead of include guards
Change-Id: I6898acbf7c6c9de45bbfa6a32202acf302f92caa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146822
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'helpcompiler/source')
-rw-r--r-- | helpcompiler/source/LuceneHelper.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/helpcompiler/source/LuceneHelper.hxx b/helpcompiler/source/LuceneHelper.hxx index 781f30bba416..6e8208b1b20e 100644 --- a/helpcompiler/source/LuceneHelper.hxx +++ b/helpcompiler/source/LuceneHelper.hxx @@ -6,9 +6,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -#ifndef INCLUDED_HELPCOMPILER_SOURCE_LUCENEHELPER_HXX -#define INCLUDED_HELPCOMPILER_SOURCE_LUCENEHELPER_HXX +#pragma once #if defined(__GNUC__) #pragma GCC visibility push(default) @@ -26,6 +24,4 @@ std::vector<TCHAR> OUStringToTCHARVec(OUString const& rStr); OUString TCHARArrayToOUString(TCHAR const* str); -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |