summaryrefslogtreecommitdiffstats
path: root/indexlib/bitio.tcc
diff options
context:
space:
mode:
Diffstat (limited to 'indexlib/bitio.tcc')
-rw-r--r--indexlib/bitio.tcc6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexlib/bitio.tcc b/indexlib/bitio.tcc
index 2779cfed..f6dbdfc0 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;
};
}