1
Fork 0

Finally rename std::_xxx to std::xxx

Except for _task, which is still a keyword.
This commit is contained in:
Marijn Haverbeke 2011-05-17 20:41:41 +02:00
parent 6067050656
commit 09d8ef8d51
87 changed files with 1224 additions and 1224 deletions

View file

@ -6,8 +6,8 @@
import util::common;
import std::_str;
import std::_vec;
import std::str;
import std::vec;
import std::option;
import std::generic_os;
@ -19,7 +19,7 @@ fn expand_syntax_ext(parser::parser p,
vec[@ast::expr] args,
option::t[str] body) -> @ast::expr {
if (_vec::len[@ast::expr](args) != 1u) {
if (vec::len[@ast::expr](args) != 1u) {
p.err("malformed #env call");
}