about summary refs log tree commit diff
diff options
context:
space:
mode:
authorscalexm <martin.alex32@hotmail.fr>2017-08-05 19:20:55 +0200
committerscalexm <martin.alex32@hotmail.fr>2017-08-14 15:07:21 +0200
commitf55dafee7e30befaf960017ccc997cdb0a5b0f33 (patch)
tree6a8014099652eef38d5b9d1185dc03183d542691
parent0c3ac648f85cca1e8dd89dfff727a422bc1897a6 (diff)
downloadrust-f55dafee7e30befaf960017ccc997cdb0a5b0f33.tar.gz
rust-f55dafee7e30befaf960017ccc997cdb0a5b0f33.zip
Remove dummy lang items
-rw-r--r--src/librustc/middle/lang_items.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc/middle/lang_items.rs b/src/librustc/middle/lang_items.rs
index 8cee88bd39b..9ba4252b52e 100644
--- a/src/librustc/middle/lang_items.rs
+++ b/src/librustc/middle/lang_items.rs
@@ -321,9 +321,6 @@ language_item_table! {
 
     StrEqFnLangItem,                 "str_eq",                  str_eq_fn;
 
-    CloneMethodLangItem,             "clone_method",            clone_method;
-    CloneFromMethodLangItem,         "clone_from_method",       clone_from_method;
-
     // A number of panic-related lang items. The `panic` item corresponds to
     // divide-by-zero and various panic cases with `match`. The
     // `panic_bounds_check` item is for indexing arrays.