mirror of
https://github.com/vgough/encfs.git
synced 2025-01-05 05:29:33 +01:00
10 lines
144 B
C++
10 lines
144 B
C++
|
#include <wx/longlong.h>
|
||
|
#include "easylogging++.h"
|
||
|
|
||
|
INITIALIZE_EASYLOGGINGPP
|
||
|
|
||
|
int main() {
|
||
|
wxLongLong l = 264375895;
|
||
|
LOG(INFO) << l;
|
||
|
}
|