diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-26 10:29:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-27 10:17:25 +0100 |
commit | ce6ac77816005b380700118d0b1de0f145503024 (patch) | |
tree | f3936299590be68eeef28df37c2d160e34c64178 /include/tools/poly.hxx | |
parent | 33e80611c46ffb8b324e1d445287f0957546de97 (diff) |
remove unused PolyOptimizeFlags enum values
Change-Id: I3a2145277212b7b45c25bea2e33aae3f6f4a7776
Reviewed-on: https://gerrit.libreoffice.org/64066
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools/poly.hxx')
-rw-r--r-- | include/tools/poly.hxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/tools/poly.hxx b/include/tools/poly.hxx index 17503b02bb09..94d06856e428 100644 --- a/include/tools/poly.hxx +++ b/include/tools/poly.hxx @@ -31,15 +31,13 @@ enum class PolyOptimizeFlags { NONE = 0x0000, - OPEN = 0x0001, - CLOSE = 0x0002, - NO_SAME = 0x0004, - REDUCE = 0x0008, - EDGES = 0x0010, + CLOSE = 0x0001, + NO_SAME = 0x0002, + EDGES = 0x0004, }; namespace o3tl { - template<> struct typed_flags<PolyOptimizeFlags> : is_typed_flags<PolyOptimizeFlags, 0x001f> {}; + template<> struct typed_flags<PolyOptimizeFlags> : is_typed_flags<PolyOptimizeFlags, 0x0007> {}; } enum class PolyStyle |