summaryrefslogtreecommitdiff
path: root/src/cli/runtime/PersistentArrayMap.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-19 16:34:13 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-19 16:34:13 +0000
commit0d697a5d3edb1551353f6fad0a4c98b8d803b106 (patch)
treead844711c496e9d07f20a5a9926be68ce2558267 /src/cli/runtime/PersistentArrayMap.cs
parent89fc0caa43811c7dfcb47a29aa59e78d295e6a1c (diff)
added Tuple, indexing
Diffstat (limited to 'src/cli/runtime/PersistentArrayMap.cs')
-rw-r--r--src/cli/runtime/PersistentArrayMap.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentArrayMap.cs b/src/cli/runtime/PersistentArrayMap.cs
index 7d789af5..02e35275 100644
--- a/src/cli/runtime/PersistentArrayMap.cs
+++ b/src/cli/runtime/PersistentArrayMap.cs
@@ -39,7 +39,7 @@ protected PersistentArrayMap(){
* This ctor captures/aliases the passed array, so do not modify later
* @param init {key1,val1,key2,val2,...}
*/
-public PersistentArrayMap(Object[] init){
+public PersistentArrayMap(params Object[] init){
this.array = init;
}