about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEsteban Küber <esteban@commure.com>2018-07-21 18:24:10 -0700
committerEsteban Küber <esteban@commure.com>2018-07-21 19:19:56 -0700
commit3c817259e3ff08b673c74b48742d118a238befe6 (patch)
treeb7d2917f66d0d0cffa6251835b562ed472d544e6 /src
parent6aa17a3c687c3e78ba65953f88d763ab2b437384 (diff)
fix tidy ~ again
Diffstat (limited to 'src')
-rw-r--r--src/libstd/macros.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 6309ca069fe..76f38646308 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -413,19 +413,6 @@ pub mod builtin {
         ($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ });
     }
 
-    /// Internal version of [`format_args`].
-    ///
-    /// This macro differs from [`format_args`] in that it appends a newline to the format string
-    /// and nothing more. It is perma-unstable.
-    ///
-    /// [`format_args`]: ../std/macro.format_args.html
-    #[doc(hidden)]
-    #[unstable(feature = "format_args_nl", issue="0")]
-    #[macro_export]
-    macro_rules! format_args_nl {
-        ($fmt:expr) => ({ /* compiler built-in */ });
-        ($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ });
-    }
     /// Inspect an environment variable at compile time.
     ///
     /// This macro will expand to the value of the named environment variable at