Date
2014-06-17.08:47:43
Message id
7058

Content

Proposed resolution:

This wording is relative to N3691.

  1. Add to [optional.comp_with_t]:

    template <class T> constexpr bool operator<(const T& v, const optional<T>& x);
    

    -?- Returns: bool(x) ? less<T>{}(v, *x) : false.