Trivial typos

Non-user facing. 
Found using `codespell -q 3`
This commit is contained in:
Unknown
2017-11-01 21:08:06 -04:00
committed by Jason Rhinelander
parent 5c7a290d37
commit 0b3f44ebdf
8 changed files with 10 additions and 10 deletions

View File

@@ -471,7 +471,7 @@ template <size_t... IPrev, size_t I, bool B, bool... Bs> struct select_indices_i
: select_indices_impl<conditional_t<B, index_sequence<IPrev..., I>, index_sequence<IPrev...>>, I + 1, Bs...> {};
template <bool... Bs> using select_indices = typename select_indices_impl<index_sequence<>, 0, Bs...>::type;
/// Backports of std::bool_constant and std::negation to accomodate older compilers
/// Backports of std::bool_constant and std::negation to accommodate older compilers
template <bool B> using bool_constant = std::integral_constant<bool, B>;
template <typename T> struct negation : bool_constant<!T::value> { };