We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b39eb commit 8f76a2dCopy full SHA for 8f76a2d
.gitignore
@@ -1 +1,2 @@
1
build
2
+.vscode
src/fast_type_gen/codegen_base.cpp
@@ -138,11 +138,11 @@ class type_name_finder : public field_instruction_visitor {
138
}
139
140
virtual void visit(const int64_field_instruction *, void *) override {
141
- name_ = "mfast::uint64";
+ name_ = "mfast::int64";
142
143
144
virtual void visit(const uint64_field_instruction *, void *) override {
145
- name_ = "mfast::int64";
+ name_ = "mfast::uint64";
146
147
148
virtual void visit(const decimal_field_instruction *, void *) override {
0 commit comments