mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
ircd::db: Explicit bool cast for column.
This commit is contained in:
parent
94716e5ea7
commit
046029725a
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ struct ircd::db::column
|
||||||
explicit operator database &();
|
explicit operator database &();
|
||||||
explicit operator database::column &();
|
explicit operator database::column &();
|
||||||
|
|
||||||
operator bool() const { return bool(c); }
|
explicit operator bool() const { return bool(c); }
|
||||||
bool operator!() const { return !c; }
|
bool operator!() const { return !c; }
|
||||||
|
|
||||||
// [GET] Iterations
|
// [GET] Iterations
|
||||||
|
|
Loading…
Reference in a new issue