boostorg / core

Boost Core Utilities
133 stars 83 forks source link

string_view::hash_value not noexcept #123

Closed vinniefalco closed 2 years ago

vinniefalco commented 2 years ago

But it could be

pdimov commented 2 years ago

It's implemented in terms of boost::hash_range, and that's not noexcept because it can call other hash<> instantiations which aren't necessarily noexcept.