summaryrefslogtreecommitdiffstats
path: root/indexlib/memvector.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-05 13:42:49 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-05 13:42:49 -0500
commitd53e057f92fb74a6655f33388d2ffcbc7954489d (patch)
tree58e08f26c5316b1b3f72003b7afc38956f609df6 /indexlib/memvector.h
parent6b96e6cfbbd5637c59445f98f3cb31990533a1bf (diff)
downloadtdepim-d53e057f92fb74a6655f33388d2ffcbc7954489d.tar.gz
tdepim-d53e057f92fb74a6655f33388d2ffcbc7954489d.zip
Fix typos.
Diffstat (limited to 'indexlib/memvector.h')
-rw-r--r--indexlib/memvector.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/indexlib/memvector.h b/indexlib/memvector.h
index d4cc446ef..446fddf92 100644
--- a/indexlib/memvector.h
+++ b/indexlib/memvector.h
@@ -72,23 +72,23 @@ struct memory_iterator : public std::iterator<STD_NAMESPACE_PREFIX random_access
}
memory_iterator& operator ++() {
- data_ += byte_io::byte_lenght<T>();
+ data_ += byte_io::byte_length<T>();
return *this;
}
memory_iterator& operator --() {
- data_ -= byte_io::byte_lenght<T>();
+ data_ -= byte_io::byte_length<T>();
return *this;
}
memory_iterator& operator += ( ptrdiff_t dif ) {
- data_ += dif * byte_io::byte_lenght<T>();
+ data_ += dif * byte_io::byte_length<T>();
return *this;
}
ptrdiff_t operator - ( const memory_iterator<T>& other ) const {
- assert( !( ( raw() - other.raw() )%byte_io::byte_lenght<T>() ) );
- return ( raw() - other.raw() )/byte_io::byte_lenght<T>();
+ assert( !( ( raw() - other.raw() )%byte_io::byte_length<T>() ) );
+ return ( raw() - other.raw() )/byte_io::byte_length<T>();
}
bool operator < ( const memory_iterator<T>& other ) const {
@@ -211,8 +211,8 @@ struct memvector {
boost::scoped_ptr<memory_manager> data_;
unsigned char* address_of( unsigned i ) {
return data_->rw_base(
- byte_io::byte_lenght<unsigned>() +
- i * byte_io::byte_lenght<T>() );
+ byte_io::byte_length<unsigned>() +
+ i * byte_io::byte_length<T>() );
}
const unsigned char* address_of( unsigned i ) const {
return const_cast<memvector*>( this )->address_of( i );