cpp-btree: Remove remaining uses of ssize_t

This is due to issues building on Windows
This commit is contained in:
Jonathan G Rennison
2017-02-28 21:23:52 +00:00
parent 418e9f4158
commit 344f39196f
2 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ cmake . -G "Unix Makefiles" -Dbuild_tests=ON -DCMAKE_CXX_COMPILER=clang++
Note that this is a modified version of the original at http://code.google.com/p/cpp-btree
Changes include:
- Changing size_type from ssize_t to size_t
- Changing size_type from ssize_t to size_t, remove remaining uses of ssize_t
- Adding cbegin, cend, crbegin, crend.
- Adding key_comp
- Adding move constructors/assignment.