summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorKeegan McAllister <kmcallister@mozilla.com>2015-01-08 12:21:51 -0800
committerKeegan McAllister <kmcallister@mozilla.com>2015-01-09 11:06:17 -0800
commit128e7ff53b9e7330ca78f961030ac307f5a6fc47 (patch)
tree8b660249dddff582b5c06c147312e0533d7a9c95 /src/libstd/lib.rs
parent2e2372c6c4a265992b0eb615ea9fdee4ab999143 (diff)
downloadrust-128e7ff53b9e7330ca78f961030ac307f5a6fc47.tar.gz
rust-128e7ff53b9e7330ca78f961030ac307f5a6fc47.zip
Re-reduce libstd macro duplication
The libstd definitions move to libcore, which causes some minor updates there.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index dc157c7d676..e15e611adc0 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -122,7 +122,8 @@
 extern crate log;
 
 #[macro_use]
-#[macro_reexport(write, writeln)]
+#[macro_reexport(assert, assert_eq, debug_assert, debug_assert_eq,
+    unreachable, unimplemented, write, writeln)]
 extern crate core;
 
 #[macro_use]