2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-27 19:02:15 +00:00

Merge [51448] from the trunk.

[SVN r51617]
This commit is contained in:
Steven Watanabe
2009-03-05 03:52:26 +00:00
parent 48e6f45d92
commit 7648a7adf1
12 changed files with 142 additions and 21 deletions

View File

@@ -118,11 +118,11 @@ class C {};
class D {};
// ->* can be overloaded to do anything
bool operator->*(A a, B b) {
bool operator->*(A /*a*/, B /*b*/) {
return false;
}
bool operator->*(B b, A a) {
bool operator->*(B /*b*/, A /*a*/) {
return true;
}