summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/org/clojure/runtime/RT.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/org/clojure/runtime/RT.java b/src/org/clojure/runtime/RT.java
index ef55bb00..cd9f3677 100644
--- a/src/org/clojure/runtime/RT.java
+++ b/src/org/clojure/runtime/RT.java
@@ -68,6 +68,11 @@ static public Iter iter(Object coll)
}
+static public Object box(Object x)
+ {
+ return x;
+ }
+
static public Character box(char x)
{
return new Character(x);