diff --git a/docs/ProAccessible.md b/docs/ProAccessible.md index f8e3ddd..fde8a85 100644 --- a/docs/ProAccessible.md +++ b/docs/ProAccessible.md @@ -4,7 +4,7 @@ Given that `F` is a type meeting the [*ProBasicFacade* requirements](ProBasicFac | Expressions | Semantics | | ------------------------------------------- | ------------------------------------------------------------ | -| `typename T::template accessor` | A type that provides accessibility to `proxy`. It shall be a trivial class type and not [final](https://en.cppreference.com/w/cpp/language/final). | +| `typename T::template accessor` | A type that provides accessibility to `proxy`. It shall be a *nothrow-default-constructible*, *trivially-copyable* type, and shall not be [final](https://en.cppreference.com/w/cpp/language/final). | ## See Also diff --git a/proxy.h b/proxy.h index 16ef19c..a78221e 100644 --- a/proxy.h +++ b/proxy.h @@ -450,9 +450,11 @@ struct lifetime_meta_traits template