Skip to content

Commit

Permalink
remove empty comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Dec 19, 2017
1 parent 2b125e1 commit d007edb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Data/SQLite/src/SQLiteStatementImpl.cpp
Expand Up @@ -177,7 +177,7 @@ void SQLiteStatementImpl::bindImpl()

if (availableCount < paramCount)
throw ParameterCountMismatchException();
/**/

Bindings::difference_type remainingBindCount = bindEnd - _bindBegin;
if (bindCount < remainingBindCount)
{
Expand All @@ -186,7 +186,7 @@ void SQLiteStatementImpl::bindImpl()
}
else if (bindCount > remainingBindCount)
throw ParameterCountMismatchException();
/**/

std::size_t boundRowCount;
if (_bindBegin != bindings().end())
{
Expand Down

0 comments on commit d007edb

Please sign in to comment.