about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-14 02:48:16 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-14 02:48:16 -0800
commita3f5c66484341a279b2c34ca81b3ca214e8a6fdc (patch)
tree21b2f98b0cde06fbb9f6625431b8f8cc7689e741 /src/libstd
parent8f69176a14b876369933bcbad00ce7e130db28ea (diff)
downloadrust-a3f5c66484341a279b2c34ca81b3ca214e8a6fdc.tar.gz
rust-a3f5c66484341a279b2c34ca81b3ca214e8a6fdc.zip
libstd: Remove util::orb. Redundant with core::bool
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/util.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/libstd/util.rs b/src/libstd/util.rs
index f7bfc18a257..7f3bc5b1197 100644
--- a/src/libstd/util.rs
+++ b/src/libstd/util.rs
@@ -38,11 +38,6 @@ pure fn rational_leq(x: rational, y: rational) -> bool {
     x.num * y.den <= y.num * x.den
 }
 
-/*
-Function: orb
-*/
-pure fn orb(a: bool, b: bool) -> bool { a || b }
-
 // FIXME: Document what this is for or delete it
 tag void {
     void(@void);