SQLite Forum

Please avoid all use of the "LL" suffix for long-long integer literals
Login
Lol, some people want LL and some don't! You can't win, eh?

I can upgrade, it's just a pain as I usually use Ubuntu for my development, and I have Visual Studio installed in a virtual Windows image. There isn't enough disk free to install later versions. I know that's *my* problem, but if it could be fixed in the source that would have been good.

I can always fix those 4 lines manually from time to time.


I should point out that there is another place in the source where a long long constant is not so qualified. So right now, neither party is satisfied. At sqlite3.c at line 44310:

```
  sqlite3_int64 t64;
  t64 = *t;
  t64 = (t64 + 11644473600)*10000000;   // <---- HERE
```