mirror of
https://github.com/google/flatbuffers.git
synced 2026-07-02 21:58:19 +00:00
Don't check ForceDefaults when adding Offfset values (#5415)
This commit is contained in:
committed by
Wouter van Oortmerssen
parent
ff1a22a05f
commit
92e9f33036
@@ -540,9 +540,9 @@ namespace FlatBuffers
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="o">The index into the vtable</param>
|
/// <param name="o">The index into the vtable</param>
|
||||||
/// <param name="x">The value to put into the buffer. If the value is equal to the default
|
/// <param name="x">The value to put into the buffer. If the value is equal to the default
|
||||||
/// and <see cref="ForceDefaults"/> is false, the value will be skipped.</param>
|
/// the value will be skipped.</param>
|
||||||
/// <param name="d">The default value to compare the value against</param>
|
/// <param name="d">The default value to compare the value against</param>
|
||||||
public void AddOffset(int o, int x, int d) { if (ForceDefaults || x != d) { AddOffset(x); Slot(o); } }
|
public void AddOffset(int o, int x, int d) { if (x != d) { AddOffset(x); Slot(o); } }
|
||||||
/// @endcond
|
/// @endcond
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user