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
serializeMsgpack incorrectly serializes Duration and causes deserializeMsgpack to fail.
import mir.deser.msgpack; import mir.ser.msgpack; import std.datetime; void main() { static struct D { Duration d; } auto d = D(dur!"minutes"(1)); d.serializeMsgpack .deserializeMsgpack!D; // Throws exception }
With error msg: source\mir\timestamp.d(34): Timestamp: Expected Duration
The text was updated successfully, but these errors were encountered:
No branches or pull requests
serializeMsgpack incorrectly serializes Duration and causes deserializeMsgpack to fail.
With error msg:
source\mir\timestamp.d(34): Timestamp: Expected Duration
The text was updated successfully, but these errors were encountered: