diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-02 18:13:48 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-02 18:13:56 -0700 |
| commit | f393100b7ce86e0c1201f003c2d69fb9ea742db1 (patch) | |
| tree | 577bd91894ec1e1607ae805c03a36b0819617490 /src/rustc | |
| parent | cb0eb66672c20404cc87850db98fe00ff94da403 (diff) | |
| download | rust-f393100b7ce86e0c1201f003c2d69fb9ea742db1.tar.gz rust-f393100b7ce86e0c1201f003c2d69fb9ea742db1.zip | |
Camel case core::ops
Diffstat (limited to 'src/rustc')
| -rw-r--r-- | src/rustc/middle/ty.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rustc/middle/ty.rs b/src/rustc/middle/ty.rs index 1d28e035141..d467f3b5be5 100644 --- a/src/rustc/middle/ty.rs +++ b/src/rustc/middle/ty.rs @@ -1605,7 +1605,7 @@ fn remove_copyable(k: kind) -> kind { k - kind_(KIND_MASK_COPY | KIND_MASK_DEFAULT_MODE) } -impl kind: ops::bitand<kind,kind> { +impl kind: ops::BitAnd<kind,kind> { pure fn bitand(other: kind) -> kind { unchecked { lower_kind(self, other) @@ -1613,7 +1613,7 @@ impl kind: ops::bitand<kind,kind> { } } -impl kind: ops::bitor<kind,kind> { +impl kind: ops::BitOr<kind,kind> { pure fn bitor(other: kind) -> kind { unchecked { raise_kind(self, other) @@ -1621,7 +1621,7 @@ impl kind: ops::bitor<kind,kind> { } } -impl kind: ops::sub<kind,kind> { +impl kind: ops::Sub<kind,kind> { pure fn sub(other: kind) -> kind { unchecked { kind_(*self & !*other) |
