Skip to content

Commit 11cb244

Browse files
committed
Add commented-out default parameter value to cpp file
1 parent 11d4fb4 commit 11cb244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CppSQLite3.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ CppSQLite3Query CppSQLite3DB::execQuery(const char *szSQL) {
10381038
}
10391039
}
10401040

1041-
int CppSQLite3DB::execScalar(const char *szSQL, int nNullSentinel) {
1041+
int CppSQLite3DB::execScalar(const char *szSQL, int nNullSentinel /*=0*/) {
10421042
CppSQLite3Query q = execQuery(szSQL);
10431043

10441044
if (q.eof() || q.numFields() < 1) {

0 commit comments

Comments
 (0)