Skip to content

Commit

Permalink
Fix issue related to pointer storage. (#86)
Browse files Browse the repository at this point in the history
Change type of `ci` in pointer value to `int` for an explicit signed type, since `char` is sometimes (e.g. emscripten) unsigned.
  • Loading branch information
kalmard0 authored May 6, 2024
1 parent b3c8577 commit df6dfdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inkcpp/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class value : public snapshot_interface

struct {
hash_t name;
char ci;
int ci;
} pointer;
};

Expand Down

0 comments on commit df6dfdf

Please sign in to comment.