Skip to content

Fix warnings seen when compiling with gcc8.

Scott Snyder requested to merge ssnyder/Gaudi:gcc8-warn-20180315 into master

gcc8 warns about catching a polymorphic exception classs by value, as that can discard information in derived classes. Change instances of this to instead catch the exception by const reference.

Merge request reports