diff options
| author | Marijn Haverbeke <[email protected]> | 2011-05-12 17:20:07 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <[email protected]> | 2011-05-12 21:30:35 +0200 |
| commit | 6510f1ce7cb026ceb98689583c13f18c1e7c2c12 (patch) | |
| tree | daee2983e121887082fbba929919d2a2dccef36c /src/comp/middle/metadata.rs | |
| parent | Remove some truly wrong logic in parse_constrs (diff) | |
| download | rust-6510f1ce7cb026ceb98689583c13f18c1e7c2c12.tar.xz rust-6510f1ce7cb026ceb98689583c13f18c1e7c2c12.zip | |
Change module dereference syntax from . to ::
This will need to be a snapshot.
Diffstat (limited to 'src/comp/middle/metadata.rs')
| -rw-r--r-- | src/comp/middle/metadata.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/middle/metadata.rs b/src/comp/middle/metadata.rs index eedff3bf..ee628643 100644 --- a/src/comp/middle/metadata.rs +++ b/src/comp/middle/metadata.rs @@ -301,7 +301,7 @@ fn add_to_index(&EBML.writer ebml_w, &mutable vec[tup(str, uint)] index, &str name) { auto full_path = path + vec(name); - index += vec(tup(Str.connect(full_path, "."), ebml_w.writer.tell())); + index += vec(tup(Str.connect(full_path, "::"), ebml_w.writer.tell())); } fn encode_native_module_item_paths(&EBML.writer ebml_w, |