From: Michael D. <mik...@us...> - 2005-02-17 14:03:14
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18737/Nullables.NHibernate Modified Files: Nullables.NHibernate-1.1.csproj NullableSByteType.cs Log Message: Add NullableSByte int Nullables.NHibernate and added to test fixture. Index: NullableSByteType.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate/NullableSByteType.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NullableSByteType.cs 10 Dec 2004 18:24:19 -0000 1.1 --- NullableSByteType.cs 17 Feb 2005 14:03:05 -0000 1.2 *************** *** 64,68 **** else { ! return new NullableSByte((SByte)value); } } --- 64,68 ---- else { ! return new NullableSByte( Convert.ToSByte( value ) ); } } *************** *** 79,83 **** else { ! return new NullableSByte((SByte)value); } } --- 79,84 ---- else { ! ! return new NullableSByte( Convert.ToSByte( value ) ); } } Index: Nullables.NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables.NHibernate/Nullables.NHibernate-1.1.csproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Nullables.NHibernate-1.1.csproj 12 Nov 2004 22:08:26 -0000 1.1 --- Nullables.NHibernate-1.1.csproj 17 Feb 2005 14:03:05 -0000 1.2 *************** *** 154,157 **** --- 154,162 ---- /> <File + RelPath = "NullableSByteType.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "NullableSingleType.cs" SubType = "Code" |