diff options
Diffstat (limited to 'indexlib/bitio.tcc')
-rw-r--r-- | indexlib/bitio.tcc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indexlib/bitio.tcc b/indexlib/bitio.tcc index 2779cfedb..f6dbdfc0b 100644 --- a/indexlib/bitio.tcc +++ b/indexlib/bitio.tcc @@ -39,7 +39,7 @@ namespace byte_io { } template<> - struct byte_lenght_struct<uint8_t> { + struct byte_length_struct<uint8_t> { static const int value = 1; }; @@ -60,7 +60,7 @@ namespace byte_io { } template<> - struct byte_lenght_struct<uint16_t> { + struct byte_length_struct<uint16_t> { static const int value = 2; }; @@ -84,7 +84,7 @@ namespace byte_io { return res; } template<> - struct byte_lenght_struct<uint32_t> { + struct byte_length_struct<uint32_t> { static const int value = 4; }; } |