include/basic/basmgr.hxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
New commits: commit 7d1dc5707edb992f62d0a4b5bf1e8395f71f6e7b Author: Omkar Santosh Nikam <omkar.nikam.2...@gmail.com> AuthorDate: Wed Apr 10 21:17:48 2024 +0530 Commit: Hossein <hoss...@libreoffice.org> CommitDate: Wed Apr 10 22:29:08 2024 +0200 tdf#143148 Use pragma once instead of include guards Use pragma once Change-Id: Iedf25f6034f285e9bdcab515ec6d9e20b230d969 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165955 Tested-by: Jenkins Reviewed-by: Hossein <hoss...@libreoffice.org> diff --git a/include/basic/basmgr.hxx b/include/basic/basmgr.hxx index f7533f18311c..c9633425c4bc 100644 --- a/include/basic/basmgr.hxx +++ b/include/basic/basmgr.hxx @@ -16,8 +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_BASIC_BASMGR_HXX -#define INCLUDED_BASIC_BASMGR_HXX +#pragma once #include <utility> #include <comphelper/errcode.hxx> @@ -191,6 +190,4 @@ private: BasicManager( BasicManager const&) = delete; //MSVC2015 workaround }; -#endif // INCLUDED_BASIC_BASMGR_HXX - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */