about summary refs log tree commit diff
path: root/src/libstd/sys/redox/env.rs
diff options
context:
space:
mode:
authorljedrz <ljedrz@gmail.com>2018-12-04 10:21:42 +0100
committerljedrz <ljedrz@gmail.com>2018-12-04 10:21:42 +0100
commit8c4129cd9ae079fc010b8e3d73a72659b2f0a986 (patch)
tree99f1759018df33a5a7075f51410e7d7eaea15c9e /src/libstd/sys/redox/env.rs
parent91d5d56c00d8e2926ccf856f14a4e52ef480d039 (diff)
downloadrust-8c4129cd9ae079fc010b8e3d73a72659b2f0a986.tar.gz
rust-8c4129cd9ae079fc010b8e3d73a72659b2f0a986.zip
cleanup: remove static lifetimes from consts in libstd
Diffstat (limited to 'src/libstd/sys/redox/env.rs')
-rw-r--r--src/libstd/sys/redox/env.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libstd/sys/redox/env.rs b/src/libstd/sys/redox/env.rs
index 669b7520df8..75e35046fb7 100644
--- a/src/libstd/sys/redox/env.rs
+++ b/src/libstd/sys/redox/env.rs
@@ -9,11 +9,11 @@
 // except according to those terms.
 
 pub mod os {
-    pub const FAMILY: &'static str = "redox";
-    pub const OS: &'static str = "redox";
-    pub const DLL_PREFIX: &'static str = "lib";
-    pub const DLL_SUFFIX: &'static str = ".so";
-    pub const DLL_EXTENSION: &'static str = "so";
-    pub const EXE_SUFFIX: &'static str = "";
-    pub const EXE_EXTENSION: &'static str = "";
+    pub const FAMILY: &str = "redox";
+    pub const OS: &str = "redox";
+    pub const DLL_PREFIX: &str = "lib";
+    pub const DLL_SUFFIX: &str = ".so";
+    pub const DLL_EXTENSION: &str = "so";
+    pub const EXE_SUFFIX: &str = "";
+    pub const EXE_EXTENSION: &str = "";
 }