mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-15 08:48:52 +00:00
Fixed clang-tidy warnings.
Change-Id: Ib94ef29254c116b60e4ff298baa2ce323ac9655c Tested: on Linux.
This commit is contained in:
@@ -1499,7 +1499,7 @@ inline flatbuffers::Offset<Stat> CreateStat(flatbuffers::FlatBufferBuilder &_fbb
|
||||
(void)_rehasher;
|
||||
(void)_o;
|
||||
struct _VectorArgs { flatbuffers::FlatBufferBuilder *__fbb; const StatT* __o; const flatbuffers::rehasher_function_t *__rehasher; } _va = { &_fbb, _o, _rehasher}; (void)_va;
|
||||
auto _id = _o->id.size() ? _fbb.CreateString(_o->id) : 0;
|
||||
auto _id = _o->id.empty() ? 0 : _fbb.CreateString(_o->id);
|
||||
auto _val = _o->val;
|
||||
auto _count = _o->count;
|
||||
return MyGame::Example::CreateStat(
|
||||
|
||||
Reference in New Issue
Block a user