Change file names etc

This commit is contained in:
kampersanda 2017-11-11 20:58:38 +09:00
parent b5eef609d3
commit cc965a853e
3 changed files with 10 additions and 2 deletions

View file

@ -75,7 +75,7 @@ void test_basic_operations(const Trie<Fast>& trie, const std::vector<Key>& keys,
for (auto& key : keys) {
const auto id = trie.lookup(key.ptr, key.length);
assert(id != kNotFound);
assert(id != NOT_FOUND);
std::vector<uint8_t> ret;
trie.access(id, ret);
@ -86,7 +86,7 @@ void test_basic_operations(const Trie<Fast>& trie, const std::vector<Key>& keys,
for (auto& other : others) {
const auto id = trie.lookup(other.ptr, other.length);
assert(id == kNotFound);
assert(id == NOT_FOUND);
}
}

8
src/xcdat.hpp Normal file
View file

@ -0,0 +1,8 @@
//
// Created by Shunsuke Kanda on 2017/11/10.
//
#ifndef XCDAT_XCDAT_HPP
#define XCDAT_XCDAT_HPP
#endif //XCDAT_XCDAT_HPP