summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorWouter van Oortmerssen <wvo@google.com>2015-03-13 13:05:28 -0700
committerWouter van Oortmerssen <wvo@google.com>2015-03-13 13:05:28 -0700
commit7ef2fc251735f019a21b5e0aa88053a1faffd7c7 (patch)
tree8760fdc249d296152c2b7179728dcbdbf0af8131 /net
parent6df9e1c537f566be082aa41c5e35628aa06733fc (diff)
downloadflatbuffers-7ef2fc251735f019a21b5e0aa88053a1faffd7c7.tar.gz
flatbuffers-7ef2fc251735f019a21b5e0aa88053a1faffd7c7.tar.bz2
flatbuffers-7ef2fc251735f019a21b5e0aa88053a1faffd7c7.zip
Regenerated test code + fixed typo in C# FlatBufferBuilder
Change-Id: Ifa6d9459c53ae60b9bf936d9468ec971ee282f14 Tested: on Linux and Windows.
Diffstat (limited to 'net')
-rw-r--r--net/FlatBuffers/FlatBufferBuilder.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/FlatBuffers/FlatBufferBuilder.cs b/net/FlatBuffers/FlatBufferBuilder.cs
index d5e02b3f..c46a7709 100644
--- a/net/FlatBuffers/FlatBufferBuilder.cs
+++ b/net/FlatBuffers/FlatBufferBuilder.cs
@@ -170,7 +170,7 @@ namespace FlatBuffers
public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); }
public void AddUint(uint x) { Prep(sizeof(uint), 0); PutUint(x); }
public void AddLong(long x) { Prep(sizeof(long), 0); PutLong(x); }
- public void AddULong(ulong x) { Prep(sizeof(ulong), 0); PutUlong(x); }
+ public void AddUlong(ulong x) { Prep(sizeof(ulong), 0); PutUlong(x); }
public void AddFloat(float x) { Prep(sizeof(float), 0); PutFloat(x); }
public void AddDouble(double x) { Prep(sizeof(double), 0);
PutDouble(x); }
@@ -245,7 +245,7 @@ namespace FlatBuffers
public void AddInt(int o, int x, int d) { if (x != d) { AddInt(x); Slot(o); } }
public void AddUint(int o, uint x, uint d) { if (x != d) { AddUint(x); Slot(o); } }
public void AddLong(int o, long x, long d) { if (x != d) { AddLong(x); Slot(o); } }
- public void AddULong(int o, ulong x, ulong d) { if (x != d) { AddULong(x); Slot(o); } }
+ public void AddUlong(int o, ulong x, ulong d) { if (x != d) { AddUlong(x); Slot(o); } }
public void AddFloat(int o, float x, double d) { if (x != d) { AddFloat(x); Slot(o); } }
public void AddDouble(int o, double x, double d) { if (x != d) { AddDouble(x); Slot(o); } }
public void AddOffset(int o, int x, int d) { if (x != d) { AddOffset(x); Slot(o); } }