Commit 2594a3e5 authored by Matthias Vallentin's avatar Matthias Vallentin

Use static comparison function for caf::none

parent a27ce413
...@@ -32,7 +32,7 @@ struct none_t : detail::comparable<none_t> { ...@@ -32,7 +32,7 @@ struct none_t : detail::comparable<none_t> {
return false; return false;
} }
constexpr int compare(none_t) const { static constexpr int compare(none_t) {
return 0; return 0;
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment