summaryrefslogtreecommitdiff
path: root/lib/dbRecordSet.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-07-05 19:32:42 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-07-05 19:32:42 +0100
commitf39817f958295f8e6b3d018bd17b8ef4103c45a8 (patch)
tree9615ed8f12454dcac7f3db3bfb42bc343b796f3f /lib/dbRecordSet.h
parentHandy operator to get a string_view of a MARIADB_STRING (diff)
downloadmygrate-f39817f958295f8e6b3d018bd17b8ef4103c45a8.tar.bz2
mygrate-f39817f958295f8e6b3d018bd17b8ef4103c45a8.tar.xz
mygrate-f39817f958295f8e6b3d018bd17b8ef4103c45a8.zip
Explicit RowView constructor
Diffstat (limited to 'lib/dbRecordSet.h')
-rw-r--r--lib/dbRecordSet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dbRecordSet.h b/lib/dbRecordSet.h
index 3bea950..80919dc 100644
--- a/lib/dbRecordSet.h
+++ b/lib/dbRecordSet.h
@@ -9,7 +9,7 @@ namespace MyGrate {
class RowView {
public:
- RowView(const RecordSet * rs, std::size_t rw = 0);
+ explicit RowView(const RecordSet * rs, std::size_t rw = 0);
DbValue operator[](std::size_t col) const;