Browse Source

remove empty comments

Aleksandar Fabijanic 8 years ago
parent
commit
d007edb8ca
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Data/SQLite/src/SQLiteStatementImpl.cpp

+ 2 - 2
Data/SQLite/src/SQLiteStatementImpl.cpp

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