Fix - Exception thrown in function that was declared not to throw

This commit is contained in:
Luis Díaz Más 2018-11-06 18:59:55 +01:00
parent cd09cda6ff
commit 58a96d5908

View File

@ -70,7 +70,7 @@ namespace Exiv2 {
* @throws nothing
*/
template <typename T>
std::ostream& operator<<(std::ostream& stream, const binaryToStringHelper<T>& binToStr) throw()
std::ostream& operator<<(std::ostream& stream, const binaryToStringHelper<T>& binToStr)
{
for (size_t i = 0; i < binToStr.buf_.size(); ++i) {
int c = static_cast<int>(binToStr.buf_.at(i));