From 58a96d59083c5a42ddc09d7b02aa104fca8dc6b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Tue, 6 Nov 2018 18:59:55 +0100 Subject: [PATCH] Fix - Exception thrown in function that was declared not to throw --- src/image_int.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image_int.hpp b/src/image_int.hpp index b6c49912..f1068116 100644 --- a/src/image_int.hpp +++ b/src/image_int.hpp @@ -70,7 +70,7 @@ namespace Exiv2 { * @throws nothing */ template - std::ostream& operator<<(std::ostream& stream, const binaryToStringHelper& binToStr) throw() + std::ostream& operator<<(std::ostream& stream, const binaryToStringHelper& binToStr) { for (size_t i = 0; i < binToStr.buf_.size(); ++i) { int c = static_cast(binToStr.buf_.at(i));