about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2014-12-03 22:46:09 +0200
committerEduard Burtescu <edy.burt@gmail.com>2014-12-08 09:14:21 +0200
commitc75e8d46c2fc576661c01f9eadb0866b3367ca4b (patch)
treea12d8408a7df5b85afa8ab1b3e779c4463256bfc /src/libcore
parent83a44c7fa676b4e5e546ce3d4624e585f9a1e899 (diff)
downloadrust-c75e8d46c2fc576661c01f9eadb0866b3367ca4b.tar.gz
rust-c75e8d46c2fc576661c01f9eadb0866b3367ca4b.zip
core: remove the dead function fmt::argumentstr.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/fmt/mod.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs
index 9b67cdd3e12..6180daebcc2 100644
--- a/src/libcore/fmt/mod.rs
+++ b/src/libcore/fmt/mod.rs
@@ -543,14 +543,6 @@ pub fn argument<'a, T>(f: extern "Rust" fn(&T, &mut Formatter) -> Result,
     }
 }
 
-/// When the compiler determines that the type of an argument *must* be a string
-/// (such as for select), then it invokes this method.
-#[doc(hidden)] #[inline]
-#[experimental = "implementation detail of the `format_args!` macro"]
-pub fn argumentstr<'a>(s: &'a &str) -> Argument<'a> {
-    argument(Show::fmt, s)
-}
-
 /// When the compiler determines that the type of an argument *must* be a uint
 /// (such as for plural), then it invokes this method.
 #[doc(hidden)] #[inline]