Fixed broken meta-test

This commit is contained in:
Phil Nash
2010-11-16 19:48:05 +00:00
parent 7d1ce5fade
commit 5f43a43662
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ struct Opaque
int val;
bool operator ==( const Opaque& o )
{
return val = o.val;
return val == o.val;
}
};