We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f210a16 commit 09a5338Copy full SHA for 09a5338
src/libsyntax/ext/expand.rs
@@ -1006,26 +1006,6 @@ pub fn std_macros() -> @str {
1006
}
1007
)
1008
1009
- // NOTE(acrichto): start removing this after the next snapshot
1010
- macro_rules! printf (
1011
- ($arg:expr) => (
1012
- print(fmt!(\"%?\", $arg))
1013
- );
1014
- ($( $arg:expr ),+) => (
1015
- print(fmt!($($arg),+))
1016
- )
1017
1018
-
1019
1020
- macro_rules! printfln (
1021
1022
- println(fmt!(\"%?\", $arg))
1023
1024
1025
- println(fmt!($($arg),+))
1026
1027
1028
1029
macro_rules! format(($($arg:tt)*) => (
1030
format_args!(::std::fmt::format, $($arg)*)
1031
))
0 commit comments