summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorVaibhavMalik4187 <vaibhavmalik2018@gmail.com>2021-12-10 14:21:35 +0530
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2021-12-10 11:01:45 +0100
commit6565f0d23737868fbbd1aa78c08223dd255e1924 (patch)
tree36b994115e21bf0d8027a35ff458130858f66eaf /vcl
parentd8aae8057d76743cfc1591cbffda2f54c338a213 (diff)
tdf#143148 Use pragma once in vcl
Change-Id: Iffad4effaeef46663d8a57110bf2d560e81d0d3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126629 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/opengl/GLMHelper.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/vcl/source/opengl/GLMHelper.hxx b/vcl/source/opengl/GLMHelper.hxx
index 9f4cd20f9e7c..9694a3c34625 100644
--- a/vcl/source/opengl/GLMHelper.hxx
+++ b/vcl/source/opengl/GLMHelper.hxx
@@ -7,8 +7,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
-#ifndef INCLUDED_VCL_GLM_GLMHELPER_HXX
-#define INCLUDED_VCL_GLM_GLMHELPER_HXX
+#pragma once
#include <glm/glm.hpp>
#include <vcl/dllapi.h>
@@ -19,6 +18,4 @@ std::ostream& operator<<(std::ostream& rStrm, const glm::mat4& rMatrix);
std::ostream& operator<<(std::ostream& rStrm, const glm::vec4& rPos);
std::ostream& operator<<(std::ostream& rStrm, const glm::vec3& rPos);
-#endif
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */