vcl/source/filter/igif/decode.hxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
New commits: commit d5736c124223e77d5a8d67c8c95bf141ee74ab5b Author: Emmanuel Peter <awinspet...@gmail.com> AuthorDate: Thu Oct 13 17:39:26 2022 +0100 Commit: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> CommitDate: Mon Oct 31 17:06:30 2022 +0100 tdf#141339 Use pragma once instead of include guards Change-Id: Icea246369ca215745e4b1ca1764bedb83123409e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141339 Tested-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> diff --git a/vcl/source/filter/igif/decode.hxx b/vcl/source/filter/igif/decode.hxx index 6e16730a36ff..3f60c28f8eac 100644 --- a/vcl/source/filter/igif/decode.hxx +++ b/vcl/source/filter/igif/decode.hxx @@ -17,8 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_VCL_SOURCE_FILTER_IGIF_DECODE_HXX -#define INCLUDED_VCL_SOURCE_FILTER_IGIF_DECODE_HXX +#pragma once #include <tools/solar.h> #include <vcl/Scanline.hxx> @@ -61,6 +60,4 @@ public: Scanline DecompressBlock( sal_uInt8* pSrc, sal_uInt8 cBufSize, sal_uLong& rCount, bool& rEOI ); }; -#endif - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */