summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/PsSpecialHandler.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/dvisvgm/src/PsSpecialHandler.hpp')
-rw-r--r--dviware/dvisvgm/src/PsSpecialHandler.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/dviware/dvisvgm/src/PsSpecialHandler.hpp b/dviware/dvisvgm/src/PsSpecialHandler.hpp
index c7a8a97815..6251e20a47 100644
--- a/dviware/dvisvgm/src/PsSpecialHandler.hpp
+++ b/dviware/dvisvgm/src/PsSpecialHandler.hpp
@@ -46,7 +46,6 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions {
* clipping paths and compute their intersections locally if necessary. */
class ClippingStack {
public:
- ClippingStack () : _maxID(0) {}
void pushEmptyPath ();
void push (const Path &path, int saveID=-1);
bool replace (const Path &path);
@@ -72,7 +71,7 @@ class PsSpecialHandler : public SpecialHandler, protected PSActions {
Entry (const Entry &entry) =default;
Entry (Entry &&entry) =default;
};
- size_t _maxID;
+ size_t _maxID=0;
std::stack<Entry> _stack; ///< stack holding the clipping information of the current graphics context
};