Skip to content

Commit

Permalink
Merge pull request #1947 from Poita/bug5699
Browse files Browse the repository at this point in the history
Fix Issue 5699 - TotalContainer opBinaryRight for 'in'
  • Loading branch information
AndrejMitrovic committed Feb 16, 2014
2 parents 4bdd5f2 + 4229d02 commit cc09f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/container.d
Expand Up @@ -513,7 +513,7 @@ Indexing operators yield or modify the value at a specified index.
/**
$(D k in container) returns true if the given key is in the container.
*/
bool opBinary(string op)(KeyType k) if (op == "in")
bool opBinaryRight(string op)(KeyType k) if (op == "in")
{
assert(0);
}
Expand Down

0 comments on commit cc09f11

Please sign in to comment.