Skip to content

Commit 8f76a2d

Browse files
Fix Issue #87
1 parent 81b39eb commit 8f76a2d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
build
2+
.vscode

src/fast_type_gen/codegen_base.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ class type_name_finder : public field_instruction_visitor {
138138
}
139139

140140
virtual void visit(const int64_field_instruction *, void *) override {
141-
name_ = "mfast::uint64";
141+
name_ = "mfast::int64";
142142
}
143143

144144
virtual void visit(const uint64_field_instruction *, void *) override {
145-
name_ = "mfast::int64";
145+
name_ = "mfast::uint64";
146146
}
147147

148148
virtual void visit(const decimal_field_instruction *, void *) override {

0 commit comments

Comments
 (0)