We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the following schema
package integer64; message TestSigned64 { optional int64 int64_ = 1; }
the following code fails on the last assertion when run with lua5.1.5, but passes when run with luajit 2.04
local pb = require"pb" local integer64 = require"protos.int64" local msg = integer64.TestSigned64() msg.int64_ = -1; binary,err = msg:Serialize(); assert(not err) local decoded = integer64.TestSigned64():Parse(binary) assert(decoded:IsInitialized()) assert(decoded:HasField('int64_')) assert(-1 == decoded.int64_)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the following schema
the following code fails on the last assertion when run with lua5.1.5, but passes when run with luajit 2.04
The text was updated successfully, but these errors were encountered: