From c9bce45a01cc8861ec7c88e84d947ed6ebc8f7d1 Mon Sep 17 00:00:00 2001 From: csharptest Date: Sun, 14 Oct 2012 23:03:24 -0500 Subject: Portability Changes - Removing uses of Enum to IConvertible from CodedIOStreams, Removed MessageStreamIterator.FromFile on non-client profiles, Removed use of Path.GetFileName, Removed uses of Converter delegate, Removed Guid/DispId options from test protos --- src/ProtocolBuffers/ICodedOutputStream.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ProtocolBuffers/ICodedOutputStream.cs') diff --git a/src/ProtocolBuffers/ICodedOutputStream.cs b/src/ProtocolBuffers/ICodedOutputStream.cs index 8619508a..64c80653 100644 --- a/src/ProtocolBuffers/ICodedOutputStream.cs +++ b/src/ProtocolBuffers/ICodedOutputStream.cs @@ -292,7 +292,7 @@ namespace Google.ProtocolBuffers /// [CLSCompliant(false)] void WriteEnumArray(int fieldNumber, string fieldName, IEnumerable list) - where T : struct, IComparable, IFormattable, IConvertible; + where T : struct, IComparable, IFormattable; /// /// Writes a packed repeated primitive, including tag and length, to the stream. @@ -369,6 +369,6 @@ namespace Google.ProtocolBuffers /// [CLSCompliant(false)] void WritePackedEnumArray(int fieldNumber, string fieldName, int calculatedSize, IEnumerable list) - where T : struct, IComparable, IFormattable, IConvertible; + where T : struct, IComparable, IFormattable; } } \ No newline at end of file -- cgit v1.2.3