summaryrefslogtreecommitdiffstats
path: root/kexi/3rdparty/kexisql3/src/sqlite3.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-26 19:08:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-31 17:15:56 +0900
commite05e9903710ef96c1cfdebd425a1b871935ca3f5 (patch)
treedd153859f1650e24770fdf32be0e4b2eb4d8759c /kexi/3rdparty/kexisql3/src/sqlite3.h
parent3899caa1b0b15e6d946608f3b49cb50f063826f1 (diff)
downloadkoffice-e05e9903.tar.gz
koffice-e05e9903.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit dbc953c5a76adc77d2a58f666dd692ae5b792025)
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/sqlite3.h')
-rw-r--r--kexi/3rdparty/kexisql3/src/sqlite3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/3rdparty/kexisql3/src/sqlite3.h b/kexi/3rdparty/kexisql3/src/sqlite3.h
index 414c6cac6..c16da53b2 100644
--- a/kexi/3rdparty/kexisql3/src/sqlite3.h
+++ b/kexi/3rdparty/kexisql3/src/sqlite3.h
@@ -78,7 +78,7 @@ typedef struct sqlite3 sqlite3;
** to do a typedef that for 64-bit integers that depends on what compiler
** is being used.
*/
-#if defined(_MSC_VER) || defined(__BORLANDC__)
+#if defined(_MSC_VER)
typedef __int64 sqlite_int64;
typedef unsigned __int64 sqlite_uint64;
#else