summaryrefslogtreecommitdiff
path: root/ucbhelper/workben/myucp/myucp_datasupplier.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/workben/myucp/myucp_datasupplier.cxx')
-rw-r--r--ucbhelper/workben/myucp/myucp_datasupplier.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/ucbhelper/workben/myucp/myucp_datasupplier.cxx b/ucbhelper/workben/myucp/myucp_datasupplier.cxx
index 467d7ec0c505..24c813f7e86a 100644
--- a/ucbhelper/workben/myucp/myucp_datasupplier.cxx
+++ b/ucbhelper/workben/myucp/myucp_datasupplier.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -109,7 +110,7 @@ DataSupplier_Impl::~DataSupplier_Impl()
while ( it != end )
{
delete (*it);
- it++;
+ ++it;
}
}
@@ -396,3 +397,5 @@ void DataSupplier::validate()
}
} // namespace
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */