From 9c30da08c0b4c0db45d84492ba5919f00cf54a70 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 20 May 2016 02:36:40 +0200 Subject: [PATCH] Document that wxLongLong is obsolete nowadays People should just use "long long" or "int64_t" instead. --- interface/wx/longlong.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/interface/wx/longlong.h b/interface/wx/longlong.h index 156e1e8a56..5903a32f0f 100644 --- a/interface/wx/longlong.h +++ b/interface/wx/longlong.h @@ -14,6 +14,11 @@ the other cases which ensures that it is the most efficient solution for working with 64 bit integers independently of the architecture. + @note This class is obsolete as there are no supported implementations not + providing a native 64 bit integer type any longer and the application code + can safely use "long long" or "std::int64_t" directly instead of using this + class. + wxLongLong defines all usual arithmetic operations such as addition, subtraction, bitwise shifts and logical operations as well as multiplication and division (not yet for the machines without native @e long long).