diff --git a/src/librustc/middle/trans/reflect.rs b/src/librustc/middle/trans/reflect.rs index 01e52fda4cb..7ad9010829c 100644 --- a/src/librustc/middle/trans/reflect.rs +++ b/src/librustc/middle/trans/reflect.rs @@ -46,10 +46,6 @@ impl<'a> Reflector<'a> { C_uint(self.bcx.ccx(), u) } - pub fn c_int(&mut self, i: int) -> ValueRef { - C_int(self.bcx.ccx(), i) - } - pub fn c_bool(&mut self, b: bool) -> ValueRef { C_bool(self.bcx.ccx(), b) }