diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-08-08 14:16:31 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-08-08 16:15:07 +0100 |
commit | 8e69c9c459600901b998faee80edf654819e2b5b (patch) | |
tree | aee97c616eb6b0c760d9edf01919db1437082b50 /lib/input | |
parent | Extract WritePqCopyStrm into its own file (diff) | |
download | mygrate-8e69c9c459600901b998faee80edf654819e2b5b.tar.bz2 mygrate-8e69c9c459600901b998faee80edf654819e2b5b.tar.xz mygrate-8e69c9c459600901b998faee80edf654819e2b5b.zip |
Simplify some bits with concepts
Diffstat (limited to 'lib/input')
-rw-r--r-- | lib/input/mysqlBindings.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/input/mysqlBindings.h b/lib/input/mysqlBindings.h index ccf876e..3d1ad7f 100644 --- a/lib/input/mysqlBindings.h +++ b/lib/input/mysqlBindings.h @@ -58,9 +58,8 @@ namespace MyGrate::Input { b.buffer = nullptr; b.is_null = &data.emplace_back(0, 1).null; } - template<typename T> void - operator()(const T &) + operator()(const auto &) { throw std::logic_error("Not implemented"); } |