mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-06 04:24:29 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
25
libs/search/dummy_rank_table.cpp
Normal file
25
libs/search/dummy_rank_table.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include "search/dummy_rank_table.hpp"
|
||||
|
||||
#include "base/macros.hpp"
|
||||
|
||||
namespace search
|
||||
{
|
||||
uint8_t DummyRankTable::Get(uint64_t /* i */) const { return kNoRank; }
|
||||
|
||||
uint64_t DummyRankTable::Size() const
|
||||
{
|
||||
NOTIMPLEMENTED();
|
||||
return 0;
|
||||
}
|
||||
|
||||
RankTable::Version DummyRankTable::GetVersion() const
|
||||
{
|
||||
NOTIMPLEMENTED();
|
||||
return RankTable::VERSION_COUNT;
|
||||
}
|
||||
|
||||
void DummyRankTable::Serialize(Writer &)
|
||||
{
|
||||
NOTIMPLEMENTED();
|
||||
}
|
||||
} // namespace search
|
||||
Reference in New Issue
Block a user