tdf#143148: Use pragma once instead of include guards

Change-Id: I84080f2b647ccdd91fa44401b4edae4bf31a92a3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166167
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
This commit is contained in:
Omkar Santosh Nikam 2024-04-17 14:44:58 +05:30 committed by Ilmari Lauhakangas
parent 11ae1cf4e4
commit 123fdb0c7a

View file

@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_BASIC_SBERRORS_HXX
#define INCLUDED_BASIC_SBERRORS_HXX
#pragma once
#include <comphelper/errcode.hxx>
@ -171,6 +170,4 @@
#define ERRCODE_BASIC_TOO_MANY_DLL ErrCode( ErrCodeArea::Sbx, ErrCodeClass::Compiler, 137 ) // Too many dll application clients
#define ERRCODE_BASIC_LOOP_NOT_INIT ErrCode( ErrCodeArea::Sbx, ErrCodeClass::Compiler, 138 ) // For loop not initialized
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */