mirror of https://github.com/procxx/kepka.git
Closed beta version 1.3.14.1: Fix for OS X old.
This commit is contained in:
parent
7150811aef
commit
736789a9ed
|
@ -14,6 +14,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include <QtCore/QThread>
|
||||
#include <QtCore/QCoreApplication>
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
|
||||
#define OS_MAC_OLD
|
||||
#endif // QT_VERSION < 5.5.0
|
||||
|
||||
#include <crl/crl.h>
|
||||
#include <rpl/rpl.h>
|
||||
|
||||
|
|
|
@ -47,3 +47,21 @@ using float64 = double;
|
|||
|
||||
using TimeMs = int64;
|
||||
using TimeId = int32;
|
||||
|
||||
// Define specializations for QByteArray for Qt 5.3.2, because
|
||||
// QByteArray in Qt 5.3.2 doesn't declare "pointer" subtype.
|
||||
#ifdef OS_MAC_OLD
|
||||
namespace gsl {
|
||||
|
||||
template <>
|
||||
inline span<char> make_span<QByteArray>(QByteArray &cont) {
|
||||
return span<char>(cont.data(), cont.size());
|
||||
}
|
||||
|
||||
template <>
|
||||
inline span<const char> make_span(const QByteArray &cont) {
|
||||
return span<const char>(cont.constData(), cont.size());
|
||||
}
|
||||
|
||||
} // namespace gsl
|
||||
#endif // OS_MAC_OLD
|
||||
|
|
|
@ -23,24 +23,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
|
||||
#define qsl(s) QStringLiteral(s)
|
||||
|
||||
// Define specializations for QByteArray for Qt 5.3.2, because
|
||||
// QByteArray in Qt 5.3.2 doesn't declare "pointer" subtype.
|
||||
#ifdef OS_MAC_OLD
|
||||
namespace gsl {
|
||||
|
||||
template <>
|
||||
inline span<char> make_span<QByteArray>(QByteArray &cont) {
|
||||
return span<char>(cont.data(), cont.size());
|
||||
}
|
||||
|
||||
template <>
|
||||
inline span<const char> make_span(const QByteArray &cont) {
|
||||
return span<const char>(cont.constData(), cont.size());
|
||||
}
|
||||
|
||||
} // namespace gsl
|
||||
#endif // OS_MAC_OLD
|
||||
|
||||
namespace base {
|
||||
|
||||
template <typename D, typename T>
|
||||
|
|
|
@ -11,6 +11,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "base/flat_map.h"
|
||||
#include "base/optional.h"
|
||||
#include <crl/crl_time.h>
|
||||
#include <QtCore/QString>
|
||||
#include <QtCore/QByteArray>
|
||||
|
||||
namespace Storage {
|
||||
namespace Cache {
|
||||
|
|
|
@ -12,6 +12,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include <QtCore/QByteArray>
|
||||
#include <QtCore/QString>
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
|
||||
#define OS_MAC_OLD
|
||||
#endif // QT_VERSION < 5.5.0
|
||||
|
||||
#include <crl/crl.h>
|
||||
#include <rpl/rpl.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue