diff options
-rw-r--r-- | include/ruby/memory_view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/memory_view.h b/include/ruby/memory_view.h index 1ddca2d46f..42309d5afc 100644 --- a/include/ruby/memory_view.h +++ b/include/ruby/memory_view.h @@ -47,10 +47,10 @@ typedef struct { char format; /** :FIXME: what is a "native" size is unclear. */ - unsigned native_size_p: 1; + bool native_size_p; /** Endian of the component */ - unsigned little_endian_p: 1; + bool little_endian_p; /** The component's offset. */ size_t offset; |