diff options
author | Slávek Banko <[email protected]> | 2022-03-16 23:34:43 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-03-20 18:49:09 +0100 |
commit | febacdee5bf580932e1937f656b475762b48acd6 (patch) | |
tree | 56cf1a5ea34db847036dd71f58e1f9d7b6f128ce /kmymoney2/mymoney/mymoneymoneytest.cpp | |
parent | 9757aeb46efff389c2b118cb373206d0720235cd (diff) | |
download | kmymoney-febacdee5bf580932e1937f656b475762b48acd6.tar.gz kmymoney-febacdee5bf580932e1937f656b475762b48acd6.zip |
Conversion to the cmake building system.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit a6454b1658d325d6ff2d6ba6c349b772148798e0)
Diffstat (limited to 'kmymoney2/mymoney/mymoneymoneytest.cpp')
-rw-r--r-- | kmymoney2/mymoney/mymoneymoneytest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/mymoney/mymoneymoneytest.cpp b/kmymoney2/mymoney/mymoneymoneytest.cpp index 116cee9..58173dc 100644 --- a/kmymoney2/mymoney/mymoneymoneytest.cpp +++ b/kmymoney2/mymoney/mymoneymoneytest.cpp @@ -30,9 +30,9 @@ // make sure, we have the correct suffix #if SIZEOF_LONG == 8 -#define LLCONST(a) a ## L +#define LLCONST(a) (signed64)a ## L #else -#define LLCONST(a) a ## LL +#define LLCONST(a) (signed64)a ## LL #endif MyMoneyMoneyTest::MyMoneyMoneyTest() |