[svn] r7433: nemerle/trunk/lib/hashtable.n
nikov
svnadmin at nemerle.org
Thu Feb 15 19:09:18 CET 2007
Log:
Fix bug 901
Author: nikov
Date: Thu Feb 15 19:09:16 2007
New Revision: 7433
Modified:
nemerle/trunk/lib/hashtable.n
Modified: nemerle/trunk/lib/hashtable.n
==============================================================================
--- nemerle/trunk/lib/hashtable.n (original)
+++ nemerle/trunk/lib/hashtable.n Thu Feb 15 19:09:16 2007
@@ -28,6 +28,7 @@
using System.Diagnostics;
using Nemerle.Assertions;
+using System.Runtime.Serialization;
using SC = System.Collections;
@@ -94,6 +95,13 @@
Add (key, val)
}
+ /* -- SERIALIZATION CONSTRUCTOR ---------------------------------------------- */
+
+ protected this (info : SerializationInfo, context : StreamingContext)
+ {
+ base(info, context);
+ }
+
/* -- PUBLIC METHODS --------------------------------------------------- */
/**
More information about the svn
mailing list