Skip to content
  • Steffen Müthing's avatar
    [c++] hash value calculation must be noexcept · eb537431
    Steffen Müthing authored
    GCC 7 is unhappy that `hash_value()` (which is used by dune-common to
    provide a `std::hash` implementation) might throw an exception. As we
    only forward to `std::hash` and that is in turn guaranteed to be
    `noexcept`, we can just claim the same.
    eb537431