mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd::db: Remove cruft from moving query out of db.
This commit is contained in:
parent
5f5609814e
commit
f81a9d8da9
1 changed files with 0 additions and 17 deletions
17
ircd/db.cc
17
ircd/db.cc
|
@ -4080,20 +4080,3 @@ ircd::db::value_required(const op &op)
|
|||
assert(0);
|
||||
return false;
|
||||
}
|
||||
|
||||
ircd::string_view
|
||||
ircd::db::reflect(const where &w)
|
||||
{
|
||||
switch(w)
|
||||
{
|
||||
case where::noop: return "noop";
|
||||
case where::test: return "test";
|
||||
case where::equal: return "equal";
|
||||
case where::not_equal: return "not_equal";
|
||||
case where::logical_or: return "logical_or";
|
||||
case where::logical_and: return "logical_and";
|
||||
case where::logical_not: return "logical_not";
|
||||
}
|
||||
|
||||
return "?????";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue