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 /embedserv/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 'embedserv/source')
-rw-r--r-- | embedserv/source/embed/guid.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/embedserv/source/embed/guid.hxx b/embedserv/source/embed/guid.hxx index 2cbf28b5b93a..9e1d8006ebda 100644 --- a/embedserv/source/embed/guid.hxx +++ b/embedserv/source/embed/guid.hxx @@ -16,9 +16,7 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - -#ifndef INCLUDED_EMBEDSERV_SOURCE_EMBED_GUID_HXX -#define INCLUDED_EMBEDSERV_SOURCE_EMBED_GUID_HXX +#pragma once #include <sal/config.h> @@ -34,6 +32,4 @@ std::u16string_view getServiceNameFromGUID_Impl(GUID const*); wchar_t const* getStorageTypeFromGUID_Impl(GUID const* guid); -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |