aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2009-06-17 16:23:30 +0100
committerJon Skeet <jonskeet@google.com>2009-06-17 16:23:30 +0100
commit367217301d7ccd529987d546471c754fa0455ed9 (patch)
treea53f315db8e1e27676e83406292b5a56dccd1e7f /src/ProtocolBuffers
parentcb8644df88191034f9ba47a1f4e60f5aa924a338 (diff)
downloadprotobuf-367217301d7ccd529987d546471c754fa0455ed9.tar.gz
protobuf-367217301d7ccd529987d546471c754fa0455ed9.tar.bz2
protobuf-367217301d7ccd529987d546471c754fa0455ed9.zip
Get the right warning number this time.
Diffstat (limited to 'src/ProtocolBuffers')
-rw-r--r--src/ProtocolBuffers/MessageStreamIterator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProtocolBuffers/MessageStreamIterator.cs b/src/ProtocolBuffers/MessageStreamIterator.cs
index e27447f3..e8cc4306 100644
--- a/src/ProtocolBuffers/MessageStreamIterator.cs
+++ b/src/ProtocolBuffers/MessageStreamIterator.cs
@@ -88,7 +88,7 @@ namespace Google.ProtocolBuffers {
// This is only ever fetched by reflection, so the compiler may
// complain that it's unused
-#pragma warning disable 0414
+#pragma warning disable 0169
/// <summary>
/// Method we'll use to build messageReader, with the first parameter fixed to TMessage.CreateBuilder. Note that we
/// have to introduce another type parameter (TMessage2) as we can't constrain TMessage for just a single method