Skip to content
New issue

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

[BUG] arg get from error place #70

Closed
1 task done
Coloryr opened this issue Nov 22, 2024 · 0 comments
Closed
1 task done

[BUG] arg get from error place #70

Coloryr opened this issue Nov 22, 2024 · 0 comments
Labels
Bug Something isn't working Triage PR/Issue needs to be triaged.

Comments

@Coloryr
Copy link

Coloryr commented Nov 22, 2024

Validations

  • I have checked for similar bug reports and could not find any.

Describe the bug

void serialize(S)(ref S serializer) {
auto state = serializer.structBegin;
serializer.putKey("param");
serializer.putValue(param.name);
serializer.putKey("axis");
serializer.putValue(axis);
serializer.putKey("range");
range.serialize(serializer);
serializer.structEnd(state);
}
/**
Deserializes a parameter
*/
SerdeException deserializeFromFghj(Fghj data) {
data["param"].deserializeValue(this.paramId);
data["axis"].deserializeValue(this.axis);
this.range.deserialize(data["axis"]);
return null;
}

that range should get from "range".

Reproduction

none

System Architecture

x86 / x86_64

Operating System

Windows

Version

0.8.7

Additional Context

No response

@Coloryr Coloryr added Bug Something isn't working Triage PR/Issue needs to be triaged. labels Nov 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working Triage PR/Issue needs to be triaged.
Projects
None yet
Development

No branches or pull requests

2 participants