From 8e1cd1f44d2c85472793ee348cd424f11c881d64 Mon Sep 17 00:00:00 2001 From: Arkadiy Vertleyb Date: Mon, 12 Dec 2005 00:00:23 +0000 Subject: [PATCH] std.cpp [SVN r31991] --- test/std.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/std.cpp b/test/std.cpp index f4db419..96267c1 100755 --- a/test/std.cpp +++ b/test/std.cpp @@ -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