Skip to content

Commit

Permalink
fix windows compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 18, 2024
1 parent 4b47062 commit 265cef2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cplusplus/src/include/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ typedef struct {
int64_t int64;
char *string;
} value;
uint16_t id : 12;
AnswerType type : 4;
uint16_t id;
AnswerType type;
} Answer;

Answer get_answer(const uint16_t id) {
Expand Down

0 comments on commit 265cef2

Please sign in to comment.