tdf#143148: Use pragma once instead of include guards

Change-Id: Ied9c8342cdfa44d6a468a39acbb577af79ef1e1f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157164
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
This commit is contained in:
Ankit_Jaipuriar 2023-09-22 09:23:21 +05:30 committed by Ilmari Lauhakangas
parent c81a607153
commit 18bc7b514c

View file

@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_CODEMAKER_COMMONCPP_HXX
#define INCLUDED_CODEMAKER_COMMONCPP_HXX
#pragma once
#include <sal/config.h>
@ -56,9 +55,6 @@ rtl::OString translateUnoToCppIdentifier(
rtl::OString const & identifier, std::string_view prefix,
IdentifierTranslationMode transmode = IdentifierTranslationMode::Global,
rtl::OString const * forbidden = nullptr);
}
#endif // INCLUDED_CODEMAKER_COMMONCPP_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */