diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-03-03 13:39:05 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-03-03 13:39:05 +0000 |
commit | a5cbac4c52ef00e167a63e165ecf0e2a21d3e08d (patch) | |
tree | fa8a133372e41f1154bea50804a3a119693faaaa /libdbpp/unittests/testParse.cpp | |
parent | Don't use auto in traits binder, difficult to specialize (diff) | |
download | libdbpp-a5cbac4c52ef00e167a63e165ecf0e2a21d3e08d.tar.bz2 libdbpp-a5cbac4c52ef00e167a63e165ecf0e2a21d3e08d.tar.xz libdbpp-a5cbac4c52ef00e167a63e165ecf0e2a21d3e08d.zip |
More clang tidy fixes
Diffstat (limited to 'libdbpp/unittests/testParse.cpp')
-rw-r--r-- | libdbpp/unittests/testParse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbpp/unittests/testParse.cpp b/libdbpp/unittests/testParse.cpp index d63925b..3764f43 100644 --- a/libdbpp/unittests/testParse.cpp +++ b/libdbpp/unittests/testParse.cpp @@ -14,7 +14,7 @@ BOOST_TEST_SPECIALIZED_COLLECTION_COMPARE(SQLs); class RecordingParser : std::fstream, public DB::SqlParse { public: - RecordingParser(const std::filesystem::path & p) : + explicit RecordingParser(const std::filesystem::path & p) : std::fstream(p), DB::SqlParse(*this, p.parent_path()) { |