diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-04 19:48:20 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-04 19:48:20 +0100 |
commit | 3526af7ec50e46aaa73d038566f42554f70f27b0 (patch) | |
tree | 2591708ced4743213f77c9aa4ee8933dc0d1b333 /libpqpp/pq-cursorselectcommand.h | |
parent | Pedantic only with gcc (diff) | |
download | libdbpp-postgresql-1.4.10.tar.bz2 libdbpp-postgresql-1.4.10.tar.xz libdbpp-postgresql-1.4.10.zip |
Fix a lot of clang-tidy warningsHEADlibdbpp-postgresql-1.4.10main
Diffstat (limited to 'libpqpp/pq-cursorselectcommand.h')
-rw-r--r-- | libpqpp/pq-cursorselectcommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpqpp/pq-cursorselectcommand.h b/libpqpp/pq-cursorselectcommand.h index 23798cd..4fcf748 100644 --- a/libpqpp/pq-cursorselectcommand.h +++ b/libpqpp/pq-cursorselectcommand.h @@ -25,8 +25,8 @@ namespace PQ { mutable bool executed; unsigned int fTuples; - std::string s_declare; - std::string s_fetch; - std::string s_close; + std::string sDeclare; + std::string sFetch; + std::string sClose; }; } |