2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-26 06:32:23 +00:00

fix typos reported on the user list

[SVN r26077]
This commit is contained in:
Aleksey Gurtovoy
2004-11-02 05:19:02 +00:00
parent 5e1bdd23f2
commit 0a09e5872c

View File

@@ -1235,8 +1235,8 @@ of one of the arguments, and how that dependency can be expressed with the
<![CDATA[struct A {
// the return type equals the third argument type:
template<class T1, T2, T3>
T3 operator()(const T1& t1, const T2& t2, const T3& t3);
template<class T1, class T2, class T3>
T3 operator()(const T1& t1, const T2& t2, const T3& t3) const;
template <class Args>
class sig {
@@ -1246,7 +1246,7 @@ of one of the arguments, and how that dependency can be expressed with the
public:
typedef typename
boost::remove_cv<T3>::type type;
}
};
};]]>
</programlisting>