diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-16 22:13:55 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-16 23:32:58 -0700 |
| commit | 081a0434fb222b3f182ee6be903b6536c85396d7 (patch) | |
| tree | 99aa3a36c35dccb934c3c05de5b5ff0983318e66 /src/rustc | |
| parent | 1679960889498d389af1869429b30a7a4360a929 (diff) | |
| download | rust-081a0434fb222b3f182ee6be903b6536c85396d7.tar.gz rust-081a0434fb222b3f182ee6be903b6536c85396d7.zip | |
Remove integer suffixes
Diffstat (limited to 'src/rustc')
| -rw-r--r-- | src/rustc/middle/typeck/astconv.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/middle/typeck/astconv.rs b/src/rustc/middle/typeck/astconv.rs index b8ff637f7dd..da7a71b3efb 100644 --- a/src/rustc/middle/typeck/astconv.rs +++ b/src/rustc/middle/typeck/astconv.rs @@ -148,8 +148,8 @@ fn ast_path_to_ty<AC: ast_conv, RS: region_scope Copy Owned>( return {substs: substs, ty: ty}; } -const NO_REGIONS: uint = 1u; -const NO_TPS: uint = 2u; +const NO_REGIONS: uint = 1; +const NO_TPS: uint = 2; // Parses the programmer's textual representation of a type into our // internal notion of a type. `getter` is a function that returns the type |
