mirror of
https://github.com/boostorg/typeof.git
synced 2025-07-29 20:37:28 +02:00
std.cpp
[SVN r31991]
This commit is contained in:
@ -24,8 +24,13 @@ using namespace std;
|
||||
|
||||
// This is temporary -- to check cw (remove later)
|
||||
|
||||
typedef std::binary_negate< int > type1;
|
||||
typedef std::binder1st< int > type2;
|
||||
#if defined(_MSL_EXTENDED_BINDERS)
|
||||
typedef std::binder1st< int, int > type1;
|
||||
typedef std::binder2nd< int, int > type2;
|
||||
#else
|
||||
typedef std::binder1st< int > type1;
|
||||
typedef std::binder2nd< int > type2;
|
||||
#endif
|
||||
|
||||
// STL containers
|
||||
|
||||
|
Reference in New Issue
Block a user