File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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};
You can’t perform that action at this time.
0 commit comments