diff options
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/workbench/bezierclip.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/basegfx/source/workbench/bezierclip.hxx b/basegfx/source/workbench/bezierclip.hxx index adb92009ad69..36d2f89a893f 100644 --- a/basegfx/source/workbench/bezierclip.hxx +++ b/basegfx/source/workbench/bezierclip.hxx @@ -17,8 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#ifndef INCLUDED_BASEGFX_SOURCE_WORKBENCH_BEZIERCLIP_HXX -#define INCLUDED_BASEGFX_SOURCE_WORKBENCH_BEZIERCLIP_HXX +#pragma once #include <vector> @@ -82,6 +81,4 @@ template <typename NumType> bool tolEqual( NumType n1, NumType n2 ) { return tol template <typename NumType> bool tolLessEqual( NumType n1, NumType n2 ) { return tolEqual(n1,n2) || n1<n2; } template <typename NumType> bool tolGreaterEqual( NumType n1, NumType n2 ) { return tolEqual(n1,n2) || n1>n2; } -#endif // INCLUDED_BASEGFX_SOURCE_WORKBENCH_BEZIERCLIP_HXX - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |