summaryrefslogtreecommitdiffstats
path: root/basegfx
diff options
context:
space:
mode:
authorrounak <rounak.modi06@gmail.com>2021-04-01 01:29:28 +0530
committerJulien Nabet <serval2412@yahoo.fr>2021-04-01 14:26:36 +0200
commit3b704dc06bd39593b14e0dc6b47ba4c9f7d853d0 (patch)
tree2c44a5b9a1d4db430898bc45cf4373009ee1e067 /basegfx
parentlok: remove frame action listener when disposing (diff)
downloadcore-3b704dc06bd39593b14e0dc6b47ba4c9f7d853d0.tar.gz
core-3b704dc06bd39593b14e0dc6b47ba4c9f7d853d0.zip
tdf#124176 Use pragma once instead of include guards
Change-Id: I778393686b9a51df6437c61a814e5c62a34302de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113433 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/workbench/gauss.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/basegfx/source/workbench/gauss.hxx b/basegfx/source/workbench/gauss.hxx
index fc352fe7e675..3605c1cac9bd 100644
--- a/basegfx/source/workbench/gauss.hxx
+++ b/basegfx/source/workbench/gauss.hxx
@@ -39,8 +39,7 @@
@return true, if elimination succeeded.
*/
-#ifndef INCLUDED_BASEGFX_SOURCE_WORKBENCH_GAUSS_HXX
-#define INCLUDED_BASEGFX_SOURCE_WORKBENCH_GAUSS_HXX
+#pragma once
template <class Matrix, typename BaseType>
bool eliminate( Matrix& matrix,
@@ -165,6 +164,4 @@ bool solve( Matrix& matrix,
return false;
}
-#endif // INCLUDED_BASEGFX_SOURCE_WORKBENCH_GAUSS_HXX
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */