Skip to content

Commit 6522b85

Browse files
committed
Fix cpplint warnings about missing & extra spaces
1 parent 7d8b69e commit 6522b85

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/SQLiteCpp/Database.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#define SQLITECPP_HAVE_STD_FILESYSTEM
2323
#endif
2424
#elif defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101500
25-
// macOS clang won't let us touch std::filesystem if we're targetting earlier than 10.15
25+
// macOS clang won't let us touch std::filesystem if we're targetting earlier than 10.15
2626
#elif defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && defined(__IPHONE_13_0) && \
2727
__IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_13_0
28-
// build for iOS clang won't let us touch std::filesystem if we're targetting earlier than iOS 13
28+
// build for iOS clang won't let us touch std::filesystem if we're targetting earlier than iOS 13
2929
#else
3030
#define SQLITECPP_HAVE_STD_FILESYSTEM
3131
#endif

include/SQLiteCpp/Statement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ class Statement
705705
int mColumnCount{0}; //!< Number of columns in the result of the prepared statement
706706
bool mbHasRow{false}; //!< true when a row has been fetched with executeStep()
707707
bool mbDone{false}; //!< true when the last executeStep() had no more row to fetch
708-
708+
709709
/// Map of columns index by name (mutable so getColumnIndex can be const)
710710
mutable std::map<std::string, int> mColumnNames;
711711
};

0 commit comments

Comments
 (0)