Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix compilation issues with Clang. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e700b1ba7a37e6335ee5770341bb01a3 |
User & Date: | mistachkin 2016-03-22 22:33:25.090 |
Context
2016-03-22
| ||
22:33 | More test constraint and portability fixes. check-in: b4365a972b user: mistachkin tags: trunk | |
22:33 | Fix compilation issues with Clang. check-in: e700b1ba7a user: mistachkin tags: trunk | |
21:54 | Fix for clean compilation on Windows. check-in: de911e58d5 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/src/contrib/extension-functions.c.
︙ | ︙ | |||
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | ** compares 2 doubles ** to use with map_make */ int double_cmp(const void *a, const void *b); #endif /* _MAP_H_ */ typedef uint8_t u8; /* typedef uint16_t u16; */ typedef int64_t i64; static char *sqlite3StrDup( const char *z ) { char *res = sqlite3_malloc( strlen(z)+1 ); return strcpy( res, z ); } /* | > > | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | ** compares 2 doubles ** to use with map_make */ int double_cmp(const void *a, const void *b); #endif /* _MAP_H_ */ #if !defined(SQLITE_CORE) typedef uint8_t u8; /* typedef uint16_t u16; */ typedef int64_t i64; #endif static char *sqlite3StrDup( const char *z ) { char *res = sqlite3_malloc( strlen(z)+1 ); return strcpy( res, z ); } /* |
︙ | ︙ | |||
1455 1456 1457 1458 1459 1460 1461 | } } /* ** Auxiliary function that iterates all elements in a map and finds the mode ** (most frequent value) */ | | | | 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 | } } /* ** Auxiliary function that iterates all elements in a map and finds the mode ** (most frequent value) */ static void modeIterate(void* e, int64_t c, void* pp){ int64_t ei; double ed; ModeCtx *p = (ModeCtx*)pp; if( 0==p->is_double ){ ei = *(int*)(e); if( p->mcnt==c ){ |
︙ | ︙ | |||
1488 1489 1490 1491 1492 1493 1494 | } /* ** Auxiliary function that iterates all elements in a map and finds the median ** (the value such that the number of elements smaller is equal the the number of ** elements larger) */ | | | | 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 | } /* ** Auxiliary function that iterates all elements in a map and finds the median ** (the value such that the number of elements smaller is equal the the number of ** elements larger) */ static void medianIterate(void* e, int64_t c, void* pp){ int64_t ei; double ed; double iL; double iR; int il; int ir; ModeCtx *p = (ModeCtx*)pp; |
︙ | ︙ | |||
1933 1934 1935 1936 1937 1938 1939 | void map_destroy(map *m){ node_destroy(m->base); } int int_cmp(const void *a, const void *b){ int64_t aa = *(int64_t *)(a); int64_t bb = *(int64_t *)(b); | < < < < < < < < | 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 | void map_destroy(map *m){ node_destroy(m->base); } int int_cmp(const void *a, const void *b){ int64_t aa = *(int64_t *)(a); int64_t bb = *(int64_t *)(b); if(aa==bb) return 0; else if(aa<bb) return -1; else return 1; } int double_cmp(const void *a, const void *b){ double aa = *(double *)(a); double bb = *(double *)(b); if(aa==bb) return 0; else if(aa<bb) return -1; else return 1; } |