summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/HtmlSpecialHandler.hpp
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-12-10 03:01:52 +0000
committerNorbert Preining <norbert@preining.info>2019-12-10 03:01:52 +0000
commit0174af21196c197a5b3672c87bc6f7a614fddd7d (patch)
tree00b155441be0755336593a3a2170f7531a055e99 /dviware/dvisvgm/src/HtmlSpecialHandler.hpp
parentd1cebb67c836ee110bdbd3aeb622675df479c993 (diff)
CTAN sync 201912100301
Diffstat (limited to 'dviware/dvisvgm/src/HtmlSpecialHandler.hpp')
-rw-r--r--dviware/dvisvgm/src/HtmlSpecialHandler.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/dviware/dvisvgm/src/HtmlSpecialHandler.hpp b/dviware/dvisvgm/src/HtmlSpecialHandler.hpp
index 0d4e3e4e11..bb85b2ad2c 100644
--- a/dviware/dvisvgm/src/HtmlSpecialHandler.hpp
+++ b/dviware/dvisvgm/src/HtmlSpecialHandler.hpp
@@ -29,7 +29,6 @@ class SpecialActions;
class HtmlSpecialHandler : public SpecialHandler {
public:
- HtmlSpecialHandler () : _active(false) {}
void preprocess (const std::string &prefix, std::istream &is, SpecialActions &actions) override;
bool process (const std::string &prefix, std::istream &is, SpecialActions &actions) override;
const char* name () const override {return "html";}
@@ -41,7 +40,7 @@ class HtmlSpecialHandler : public SpecialHandler {
void dviMovedTo (double x, double y, SpecialActions &actions) override;
private:
- bool _active;
+ bool _active=false;
};
#endif