diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-03-20 01:51:08 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-03-22 01:36:46 +1100 |
| commit | 0384952a657e49d1f1cbab7c21dee91cd2c4f585 (patch) | |
| tree | a35f30b02fabb1ccfb806be98a349486034571ef /src/libsyntax/lib.rs | |
| parent | 7785fe191651fb42a6300a399d61414bf49dffb3 (diff) | |
| download | rust-0384952a657e49d1f1cbab7c21dee91cd2c4f585.tar.gz rust-0384952a657e49d1f1cbab7c21dee91cd2c4f585.zip | |
syntax: add the OwnedSlice vector wrapper.
This is a stand-in until we have a saner `~[T]` type (i.e. a proper owned slice). It's a library version of what `~[T]` will be, i.e. an owned pointer and a length.
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index cea531ee3b3..d0608ac2e30 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -49,6 +49,7 @@ pub mod syntax { pub use parse; } +pub mod owned_slice; pub mod opt_vec; pub mod attr; pub mod diagnostic; |
