remove empty comments

This commit is contained in:
Aleksandar Fabijanic 2017-12-19 09:30:11 +01:00 committed by GitHub
parent 2b125e1c4e
commit d007edb8ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,7 +177,7 @@ void SQLiteStatementImpl::bindImpl()
if (availableCount < paramCount) if (availableCount < paramCount)
throw ParameterCountMismatchException(); throw ParameterCountMismatchException();
/**/
Bindings::difference_type remainingBindCount = bindEnd - _bindBegin; Bindings::difference_type remainingBindCount = bindEnd - _bindBegin;
if (bindCount < remainingBindCount) if (bindCount < remainingBindCount)
{ {
@ -186,7 +186,7 @@ void SQLiteStatementImpl::bindImpl()
} }
else if (bindCount > remainingBindCount) else if (bindCount > remainingBindCount)
throw ParameterCountMismatchException(); throw ParameterCountMismatchException();
/**/
std::size_t boundRowCount; std::size_t boundRowCount;
if (_bindBegin != bindings().end()) if (_bindBegin != bindings().end())
{ {