concept_check: misc. typos

Found via `codespell -q 3`
This commit is contained in:
luz.paz
2018-09-26 14:15:18 -04:00
committed by James E. King III
parent bd8faa928d
commit 64e72828d7
2 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,7 @@
<p><font color="red">This documentation is out-of-date; similar but <p><font color="red">This documentation is out-of-date; similar but
newer implementation techniques are now used. This documentation newer implementation techniques are now used. This documentation
also refers to components and protocols in the library's old also refers to components and protocols in the library's old
interace such as <code>BOOST_CLASS_REQUIRES</code> interface such as <code>BOOST_CLASS_REQUIRES</code>
and <code>constraints()</code> functions, which are still supported and <code>constraints()</code> functions, which are still supported
but deprecated.</font></p> but deprecated.</font></p>
@ -77,7 +77,7 @@
function. Instead, we group sets of valid expressions together, according function. Instead, we group sets of valid expressions together, according
to the definitions of the corresponding concepts. For each concept we to the definitions of the corresponding concepts. For each concept we
define a concept checking class template where the template parameter is define a concept checking class template where the template parameter is
for the type to be checked. The class contains a <tt>contraints()</tt> for the type to be checked. The class contains a <tt>constraints()</tt>
member function which exercises all of the valid expressions of the member function which exercises all of the valid expressions of the
concept. The objects used in the constraints function, such as <tt>n</tt> concept. The objects used in the constraints function, such as <tt>n</tt>
and <tt>i</tt>, are declared as data members of the concept checking and <tt>i</tt>, are declared as data members of the concept checking

View File

@ -335,8 +335,8 @@ namespace boost
#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \ #if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
&& BOOST_WORKAROUND(__GNUC__, > 3))) && BOOST_WORKAROUND(__GNUC__, > 3)))
// Declare a dummy construktor to make gcc happy. // Declare a dummy constructor to make gcc happy.
// It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type. // It seems the compiler can not generate a sensible constructor when this is instantiated with a reference type.
// (warning: non-static reference "const double& boost::UnaryFunction<YourClassHere>::arg" // (warning: non-static reference "const double& boost::UnaryFunction<YourClassHere>::arg"
// in class without a constructor [-Wuninitialized]) // in class without a constructor [-Wuninitialized])
UnaryFunction(); UnaryFunction();
@ -365,7 +365,7 @@ namespace boost
#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \ #if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
&& BOOST_WORKAROUND(__GNUC__, > 3))) && BOOST_WORKAROUND(__GNUC__, > 3)))
// Declare a dummy constructor to make gcc happy. // Declare a dummy constructor to make gcc happy.
// It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type. // It seems the compiler can not generate a sensible constructor when this is instantiated with a reference type.
// (warning: non-static reference "const double& boost::BinaryFunction<YourClassHere>::arg" // (warning: non-static reference "const double& boost::BinaryFunction<YourClassHere>::arg"
// in class without a constructor [-Wuninitialized]) // in class without a constructor [-Wuninitialized])
BinaryFunction(); BinaryFunction();
@ -385,7 +385,7 @@ namespace boost
#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \ #if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
&& BOOST_WORKAROUND(__GNUC__, > 3))) && BOOST_WORKAROUND(__GNUC__, > 3)))
// Declare a dummy constructor to make gcc happy. // Declare a dummy constructor to make gcc happy.
// It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type. // It seems the compiler can not generate a sensible constructor when this is instantiated with a reference type.
// (warning: non-static reference "const double& boost::UnaryPredicate<YourClassHere>::arg" // (warning: non-static reference "const double& boost::UnaryPredicate<YourClassHere>::arg"
// in class without a constructor [-Wuninitialized]) // in class without a constructor [-Wuninitialized])
UnaryPredicate(); UnaryPredicate();
@ -404,7 +404,7 @@ namespace boost
#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \ #if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
&& BOOST_WORKAROUND(__GNUC__, > 3))) && BOOST_WORKAROUND(__GNUC__, > 3)))
// Declare a dummy constructor to make gcc happy. // Declare a dummy constructor to make gcc happy.
// It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type. // It seems the compiler can not generate a sensible constructor when this is instantiated with a reference type.
// (warning: non-static reference "const double& boost::BinaryPredicate<YourClassHere>::arg" // (warning: non-static reference "const double& boost::BinaryPredicate<YourClassHere>::arg"
// in class without a constructor [-Wuninitialized]) // in class without a constructor [-Wuninitialized])
BinaryPredicate(); BinaryPredicate();
@ -429,7 +429,7 @@ namespace boost
#if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \ #if (BOOST_WORKAROUND(__GNUC__, BOOST_TESTED_AT(4) \
&& BOOST_WORKAROUND(__GNUC__, > 3))) && BOOST_WORKAROUND(__GNUC__, > 3)))
// Declare a dummy constructor to make gcc happy. // Declare a dummy constructor to make gcc happy.
// It seems the compiler can not generate a sensible constructor when this is instantiated with a refence type. // It seems the compiler can not generate a sensible constructor when this is instantiated with a reference type.
// (warning: non-static reference "const double& boost::Const_BinaryPredicate<YourClassHere>::arg" // (warning: non-static reference "const double& boost::Const_BinaryPredicate<YourClassHere>::arg"
// in class without a constructor [-Wuninitialized]) // in class without a constructor [-Wuninitialized])
Const_BinaryPredicate(); Const_BinaryPredicate();