summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/MD5HashFunction.hpp
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-10-29 03:00:39 +0000
committerNorbert Preining <norbert@preining.info>2019-10-29 03:00:39 +0000
commit97f5151099967e6c823d640a90d87bca92c44035 (patch)
tree685caa49488599f87d0caa4e972833b2263d8567 /dviware/dvisvgm/src/MD5HashFunction.hpp
parent25a647b97ef526aefcc75269dd19c46dbe3ae4c1 (diff)
CTAN sync 201910290300
Diffstat (limited to 'dviware/dvisvgm/src/MD5HashFunction.hpp')
-rw-r--r--dviware/dvisvgm/src/MD5HashFunction.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dviware/dvisvgm/src/MD5HashFunction.hpp b/dviware/dvisvgm/src/MD5HashFunction.hpp
index 4ff18f3f3e..e233673d36 100644
--- a/dviware/dvisvgm/src/MD5HashFunction.hpp
+++ b/dviware/dvisvgm/src/MD5HashFunction.hpp
@@ -32,7 +32,7 @@
class MD5HashFunction : public HashFunction {
public:
- explicit MD5HashFunction () {MD5_Init(&_context);}
+ MD5HashFunction () {MD5_Init(&_context);}
MD5HashFunction (const char *data, size_t length) : MD5HashFunction() {update(data, length);}
explicit MD5HashFunction (const std::string &data) : MD5HashFunction() {update(data);}
explicit MD5HashFunction (const std::vector<uint8_t> &data) : MD5HashFunction() {update(data);}