diff options
author | reshilkin <reshilkin@yandex-team.com> | 2023-08-12 13:39:15 +0300 |
---|---|---|
committer | reshilkin <reshilkin@yandex-team.com> | 2023-08-12 14:17:40 +0300 |
commit | 006e016c9c17a6ef9db074be1d67fd01600c3807 (patch) | |
tree | 7a8c34f36a269757621543c1b0264415d769a62d /contrib/libs | |
parent | 73ea7294b5abbc1f7cf787befbc22670e68827bd (diff) | |
download | ydb-006e016c9c17a6ef9db074be1d67fd01600c3807.tar.gz |
Fix flatbuffers patch
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/flatbuffers/src/idl_gen_php.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/flatbuffers/src/idl_gen_php.cpp b/contrib/libs/flatbuffers/src/idl_gen_php.cpp index a245b1a7c3..7bdc6e750d 100644 --- a/contrib/libs/flatbuffers/src/idl_gen_php.cpp +++ b/contrib/libs/flatbuffers/src/idl_gen_php.cpp @@ -520,8 +520,8 @@ class PhpGenerator : public BaseGenerator { auto &field = **it; if (field.deprecated) continue; - code += "$" + field.name; if (it != struct_def.fields.vec.begin()) { code += ", "; } + code += "$" + field.name; } code += ")\n"; code += Indent + "{\n"; |