| 75 | |
| 76 | template <typename T> |
| 77 | table_proxy(Table table, T&& k) : tbl(table), key(std::forward<T>(k)) { |
| 78 | } |
| 79 | |
| 80 | table_proxy(const table_proxy&) = default; |
| 81 | table_proxy(table_proxy&&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected