summaryrefslogtreecommitdiff
path: root/libpqpp/modifycommand.cpp
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2012-07-09 18:26:22 +0000
committerrandomdan <randomdan@localhost>2012-07-09 18:26:22 +0000
commitb356e332ac5fbda88c85553e7ec029c6fe493cf8 (patch)
treee25f043538a79c7495126280d0589f23f9c1be29 /libpqpp/modifycommand.cpp
parentA stream interface, an RDBMS bulk load interface, a decompression layer, an i... (diff)
downloadlibdbpp-postgresql-b356e332ac5fbda88c85553e7ec029c6fe493cf8.tar.bz2
libdbpp-postgresql-b356e332ac5fbda88c85553e7ec029c6fe493cf8.tar.xz
libdbpp-postgresql-b356e332ac5fbda88c85553e7ec029c6fe493cf8.zip
Fixes suggested by cppcheck
Diffstat (limited to 'libpqpp/modifycommand.cpp')
-rw-r--r--libpqpp/modifycommand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpqpp/modifycommand.cpp b/libpqpp/modifycommand.cpp
index b9ece01..3eb41ec 100644
--- a/libpqpp/modifycommand.cpp
+++ b/libpqpp/modifycommand.cpp
@@ -24,7 +24,7 @@ PQ::ModifyCommand::prepare() const
char buf[4];
int p = 1;
bool inquote = false;
- for(std::string::const_iterator i = sql.begin(); i != sql.end(); i++) {
+ for(std::string::const_iterator i = sql.begin(); i != sql.end(); ++i) {
if (*i == '?' && !inquote) {
snprintf(buf, 4, "$%d", p++);
psql += buf;