1
0
forked from boostorg/bind

Changed first_argument_type to argument_type in [c]mf0

[SVN r11769]
This commit is contained in:
Peter Dimov
2001-11-22 15:17:17 +00:00
parent 5134310a5e
commit 9cd7fd58a1

View File

@@ -20,7 +20,7 @@ template<class R, class T> class BOOST_MEM_FN_NAME(mf0)
public:
typedef R result_type;
typedef T * first_argument_type;
typedef T * argument_type;
private:
@@ -54,7 +54,7 @@ template<class R, class T> class BOOST_MEM_FN_NAME(cmf0)
public:
typedef R result_type;
typedef T const * first_argument_type;
typedef T const * argument_type;
private: