diff options
Diffstat (limited to 'src/cli/runtime/PersistentList.cs')
-rw-r--r-- | src/cli/runtime/PersistentList.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentList.cs b/src/cli/runtime/PersistentList.cs index dbe4412c..b29c0908 100644 --- a/src/cli/runtime/PersistentList.cs +++ b/src/cli/runtime/PersistentList.cs @@ -26,7 +26,7 @@ public PersistentList(Object first) { this._count = 1;
}
-private PersistentList(Object first, PersistentList rest) {
+internal PersistentList(Object first, PersistentList rest) {
this._first = first;
this._rest = rest;
|