SQLite Forum

Please avoid all use of the "LL" suffix for long-long integer literals
Login
Or use a macro to qualify them on a platform basis:

```
#if defined(_MSC_VER)
#define LL(x) (x##I64)
#else
#define LL(x) (x##LL)
#endif

if (somevar == LL(123456789012)) { somecode }
```