aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/WireFormat.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-05-20 12:07:49 -0500
committerrogerk <devnull@localhost>2011-05-20 12:07:49 -0500
commit51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be (patch)
tree564ca90c278eb2a8370a717fbac0c3b8bbc6dbfd /src/ProtocolBuffers/WireFormat.cs
parent5a80c378421d3a3cd4f19efcbafd9eaae089c3e9 (diff)
downloadprotobuf-51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be.tar.gz
protobuf-51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be.tar.bz2
protobuf-51eb1b405c852d1efc1dd3ca2d7e29fc0a8b67be.zip
Removed some uses of InternalsVisibleTo, made some stuff public
Diffstat (limited to 'src/ProtocolBuffers/WireFormat.cs')
-rw-r--r--src/ProtocolBuffers/WireFormat.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ProtocolBuffers/WireFormat.cs b/src/ProtocolBuffers/WireFormat.cs
index 508f1b48..b98d364c 100644
--- a/src/ProtocolBuffers/WireFormat.cs
+++ b/src/ProtocolBuffers/WireFormat.cs
@@ -51,14 +51,14 @@ namespace Google.ProtocolBuffers {
public static class WireFormat {
#region Fixed sizes.
- // TODO(jonskeet): Move these somewhere else. They're messy. Consider making FieldType a smarter kind of enum
- internal const int Fixed32Size = 4;
- internal const int Fixed64Size = 8;
- internal const int SFixed32Size = 4;
- internal const int SFixed64Size = 8;
- internal const int FloatSize = 4;
- internal const int DoubleSize = 8;
- internal const int BoolSize = 1;
+ // TODO(jonskeet): Move these somewhere else. They're messy. Consider making FieldType a smarter kind of enum
+ public const int Fixed32Size = 4;
+ public const int Fixed64Size = 8;
+ public const int SFixed32Size = 4;
+ public const int SFixed64Size = 8;
+ public const int FloatSize = 4;
+ public const int DoubleSize = 8;
+ public const int BoolSize = 1;
#endregion
[CLSCompliant(false)]