Skip to content

Commit f2740d2

Browse files
committed
fix: sqlite3 importing conflict with other third party framework
1 parent 1fc68d0 commit f2740d2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

AVOS/AVOSCloud/ThirdParty/LCDB/LCDatabase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import <Foundation/Foundation.h>
2-
#import "sqlite3.h"
2+
#import <sqlite3.h>
33
#import "LCResultSet.h"
44
#import "LCDatabasePool.h"
55

AVOS/AVOSCloud/ThirdParty/LCDB/LCDatabasePool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88

99
#import <Foundation/Foundation.h>
10-
#import "sqlite3.h"
10+
#import <sqlite3.h>
1111

1212
@class LCDatabase;
1313

AVOS/AVOSCloud/ThirdParty/LCDB/LCDatabaseQueue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88

99
#import <Foundation/Foundation.h>
10-
#import "sqlite3.h"
10+
#import <sqlite3.h>
1111

1212
@class LCDatabase;
1313

AVOS/AVOSCloud/ThirdParty/LCDB/LCResultSet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import <Foundation/Foundation.h>
2-
#import "sqlite3.h"
2+
#import <sqlite3.h>
33

44
#ifndef __has_feature // Optional.
55
#define __has_feature(x) 0 // Compatibility with non-clang compilers.

0 commit comments

Comments
 (0)