From e231f2b987dbf58a35628cc289474b3d10e44c16 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 29 May 2022 13:25:50 +0200 Subject: [PATCH] Must not use tl::to_string on quoted strings --- src/img/img/imgObject.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/img/img/imgObject.cc b/src/img/img/imgObject.cc index e2912b2d1..4719fb7f7 100644 --- a/src/img/img/imgObject.cc +++ b/src/img/img/imgObject.cc @@ -1702,7 +1702,7 @@ Object::read_file () } #else - throw tl::Exception (tl::to_string ("No PNG support compiled in - cannot load PNG files")); + throw tl::Exception ("No PNG support compiled in - cannot load PNG files"); #endif }