Overview
Comment: | Fix import of +Private.h file in .h file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8dda2fcc3237309671afa3be8db69901 |
User & Date: | js on 2020-10-03 19:35:28 |
Other Links: | manifest | tags |
Context
2020-10-03
| ||
19:38 | configure: Fix incomplete FRAMEWORK_LIBS check-in: 5ad548669b user: js tags: trunk | |
19:35 | Fix import of +Private.h file in .h file check-in: 8dda2fcc32 user: js tags: trunk | |
14:46 | tests/Makefile: Fix a typo check-in: aae7994132 user: js tags: trunk | |
Changes
Modified src/SL3Connection.h from [272c3ee93b] to [fc098e3f83].
︙ | ︙ | |||
21 22 23 24 25 26 27 | */ #import <ObjFW/ObjFW.h> #include <sqlite3.h> #import "SL3PreparedStatement.h" | < | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | */ #import <ObjFW/ObjFW.h> #include <sqlite3.h> #import "SL3PreparedStatement.h" OF_ASSUME_NONNULL_BEGIN @interface SL3Connection: OFObject { #ifdef SL3_PUBLIC_IVARS @public |
︙ | ︙ |
Modified src/SL3Connection.m from [e8eef4d654] to [a891b7926a].
︙ | ︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #import "SL3Connection.h" #import "SL3PreparedStatement.h" #import "SL3ExecuteStatementFailedException.h" #import "SL3OpenFailedException.h" @implementation SL3Connection + (instancetype)connectionWithPath: (OFString *)path { | > | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #import "SL3Connection.h" #import "SL3PreparedStatement.h" #import "SL3PreparedStatement+Private.h" #import "SL3ExecuteStatementFailedException.h" #import "SL3OpenFailedException.h" @implementation SL3Connection + (instancetype)connectionWithPath: (OFString *)path { |
︙ | ︙ |