summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2021-09-27 11:19:24 +0200
committerThomas Deutschmann <whissi@gentoo.org>2021-10-20 18:22:47 +0200
commitcc6be9c3577168805ec34b2d396e63361012282b (patch)
tree7dc794b08a1a6a786d540516c623cb1eebfb1863 /tesseract
parentImport Ghostscript 9.54 (diff)
downloadghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.gz
ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.bz2
ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.zip
Import Ghostscript 9.55ghostscript-9.55
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'tesseract')
-rw-r--r--tesseract/src/ccutil/strngs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tesseract/src/ccutil/strngs.h b/tesseract/src/ccutil/strngs.h
index 2812e570..b81c3733 100644
--- a/tesseract/src/ccutil/strngs.h
+++ b/tesseract/src/ccutil/strngs.h
@@ -37,6 +37,7 @@ class STRING : public std::string {
using std::string::string;
STRING(const std::string &s) : std::string(s) {}
STRING(const char *s) : std::string(s ? s : "") {}
+ STRING() : std::string("") {}
// Writes to the given file. Returns false in case of error.
TESS_API