summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/BoundingBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/dvisvgm/src/BoundingBox.cpp')
-rw-r--r--dviware/dvisvgm/src/BoundingBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dviware/dvisvgm/src/BoundingBox.cpp b/dviware/dvisvgm/src/BoundingBox.cpp
index 2dbcc2ebcd..0fb6fde883 100644
--- a/dviware/dvisvgm/src/BoundingBox.cpp
+++ b/dviware/dvisvgm/src/BoundingBox.cpp
@@ -2,7 +2,7 @@
** BoundingBox.cpp **
** **
** This file is part of dvisvgm -- a fast DVI to SVG converter **
-** Copyright (C) 2005-2020 Martin Gieseking <martin.gieseking@uos.de> **
+** Copyright (C) 2005-2021 Martin Gieseking <martin.gieseking@uos.de> **
** **
** This program is free software; you can redistribute it and/or **
** modify it under the terms of the GNU General Public License as **
@@ -76,7 +76,7 @@ vector<Length> BoundingBox::extractLengths (string boxstr) {
vector<string> lengthStrings = util::split(boxstr, " ");
for (const string &lenstr : lengthStrings) {
if (!lenstr.empty())
- lengths.emplace_back(Length(lenstr));
+ lengths.emplace_back(lenstr);
}
return lengths;
}