summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorSabyasachi Bhoi <sabyabhoi@gmail.com>2021-07-22 16:09:58 +0530
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2021-07-22 16:30:49 +0200
commitcf717f6d41dd3a2a582ee1478e83c281b18b9c3f (patch)
tree1b3a44b8a21e936ac58d098483301068a25a1cd2 /vcl
parentb85becd0d427c7375f1d8e6309f348304b6ebbac (diff)
tdf#143148: Use pragma once instead of include guards
Replace include guards with pragma once in header file Change-Id: I8f845a3eb563ab3e6d5ce57b3b411a46bce54889 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119368 Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/bitmap/impvect.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/vcl/source/bitmap/impvect.hxx b/vcl/source/bitmap/impvect.hxx
index 41f0884e9626..257d1b5e5a87 100644
--- a/vcl/source/bitmap/impvect.hxx
+++ b/vcl/source/bitmap/impvect.hxx
@@ -17,8 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_VCL_SOURCE_GDI_IMPVECT_HXX
-#define INCLUDED_VCL_SOURCE_GDI_IMPVECT_HXX
+#pragma once
#include <vcl/gdimtf.hxx>
@@ -30,6 +29,4 @@ namespace ImplVectorizer
sal_uInt8 cReduce, const Link<tools::Long,void>* pProgress );
};
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */