Skip to content
Snippets Groups Projects
user avatar
Steven Murray authored
Changed catch(std::out_of_range) to catch(std::out_of_range &) in order to avoid the following type of compilation error:

../CTA/common/checksum/ChecksumBlob.hpp:145:18: error: catching polymorphic type ‘class std::out_of_range’ by value [-Werror=catch-value=]
     } catch(std::out_of_range) {
                  ^~~~~~~~~~~~
cc1plus: all warnings being treated as errors
dd3b0cbe
History