diff --git a/algorithms.html b/algorithms.html index 26ed818..3cb4856 100644 --- a/algorithms.html +++ b/algorithms.html @@ -192,7 +192,7 @@

ExecutionPolicy algorithm overloads

Parallel algorithms have the requirement is_execution_policy<ExecutionPolicy>::value is true shall not participate in overload resolution unless - is_execution_policy<decay_t<ExecutionPolicy>>::value is true. + is_execution_policy<decay_t<ExecutionPolicy>>::value is true.

The algorithms listed in shall have ExecutionPolicy overloads.

@@ -315,9 +315,11 @@

ExecutionPolicy algorithm overloads

+ Not all algorithms in the Standard Library have counterparts in . + diff --git a/exceptions.html b/exceptions.html index fcb0f51..445d58c 100644 --- a/exceptions.html +++ b/exceptions.html @@ -79,7 +79,7 @@

Header <experimental/exception_list> synopsis

iterator begin() const noexcept; iterator end() const noexcept; - const char* what() const override noexcept; + const char* what() const noexcept override; private: std::list<exception_ptr> exceptions_; // exposition only @@ -138,7 +138,7 @@

Header <experimental/exception_list> synopsis

- const char* what() const noexcept; + const char* what() const noexcept override;