mirror of https://github.com/procxx/kepka.git
[Refactoring] set current standart to c++17 and change any logic to std::clamp (if it's possible)
This commit is contained in:
parent
40f8f0939a
commit
1cb6dcee54
|
@ -32,7 +32,7 @@ else()
|
|||
find_package(OpenSSL REQUIRED)
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED YES)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
|
||||
|
|
|
@ -641,10 +641,10 @@ if(NOT WIN32)
|
|||
set_flag_if_supported(Telegram WNCE -Wno-c++1z-extensions)
|
||||
endif()
|
||||
|
||||
# Enable C++14 support for msvc (@todo this should be done in cmake - see ver 3.10 or above)
|
||||
# Enable C++17 support for msvc (@todo this should be done in cmake - see ver 3.10 or above)
|
||||
if(WIN32)
|
||||
target_compile_options(Telegram PRIVATE
|
||||
/std:c++14
|
||||
/std:c++latest
|
||||
/EHsc # Catch C++ exceptions only, extern C functions never throw a C++ exception.
|
||||
)
|
||||
endif()
|
||||
|
|
|
@ -1334,7 +1334,7 @@ void ApiWrap::resolveWebPages() {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
m = std::min(m, i.key()->pendingTill - t);
|
||||
m = std::min(m, i.key()->pendingTill - t);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -370,7 +370,7 @@ void ShareBox::Inner::repaintChatAtIndex(int index) {
|
|||
|
||||
auto row = index / _columnCount;
|
||||
auto column = index % _columnCount;
|
||||
update(rtlrect(_rowsLeft + std::floor(column * _rowWidthReal), row * _rowHeight, _rowWidth, _rowHeight, width()));
|
||||
update(rtlrect(_rowsLeft + std::floor(column * _rowWidthReal), row * _rowHeight, _rowWidth, _rowHeight, width()));
|
||||
}
|
||||
|
||||
ShareBox::Inner::Chat *ShareBox::Inner::getChatAtIndex(int index) {
|
||||
|
|
|
@ -79,7 +79,7 @@ bool isValidColor(const QString &str) {
|
|||
}
|
||||
|
||||
uchar toGray(uchar r, uchar g, uchar b) {
|
||||
return std::max(std::min(int(0.21 * r + 0.72 * g + 0.07 * b), 255), 0);
|
||||
return std::clamp(int(0.21 * r + 0.72 * g + 0.07 * b), 0, 255);
|
||||
}
|
||||
|
||||
uchar readHexUchar(QChar ch) {
|
||||
|
|
|
@ -30,25 +30,6 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
|||
template <typename Type>
|
||||
using not_null = gsl::not_null<Type>;
|
||||
|
||||
// Custom libc++ build used for old OS X versions already has this.
|
||||
#ifndef OS_MAC_OLD
|
||||
|
||||
#if defined COMPILER_CLANG || defined COMPILER_GCC
|
||||
namespace std {
|
||||
|
||||
template <typename T>
|
||||
constexpr std::add_const_t<T>& as_const(T& t) noexcept {
|
||||
return t;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
void as_const(const T&&) = delete;
|
||||
|
||||
} // namespace std
|
||||
#endif // COMPILER_CLANG || COMPILER_GCC
|
||||
|
||||
#endif // OS_MAC_OLD
|
||||
|
||||
#include "base/ordered_set.h"
|
||||
|
||||
#include <cstdint>
|
||||
|
|
|
@ -36,6 +36,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
|||
#include "window/window_controller.h"
|
||||
#include "styles/style_history.h"
|
||||
#include "calls/calls_instance.h"
|
||||
#include <algorithm>
|
||||
|
||||
namespace {
|
||||
|
||||
|
@ -3225,7 +3226,7 @@ QString siteNameFromUrl(const QString &url) {
|
|||
|
||||
qint32 articleThumbWidth(PhotoData *thumb, qint32 height) {
|
||||
qint32 w = thumb->medium->width(), h = thumb->medium->height();
|
||||
return std::max(std::min(height * w / h, height), 1);
|
||||
return std::clamp(height * w / h, 1, height);
|
||||
}
|
||||
|
||||
qint32 articleThumbHeight(PhotoData *thumb, qint32 width) {
|
||||
|
|
|
@ -571,7 +571,7 @@ void Instance::Inner::processFrame(qint32 offset, qint32 framesize) {
|
|||
if (d->fullSamples < skipSamples + fadeSamples) {
|
||||
qint32 fadedCnt = std::min(samplesCnt, skipSamples + fadeSamples - d->fullSamples);
|
||||
double coef = 1. / fadeSamples, fadedFrom = d->fullSamples - skipSamples;
|
||||
short *ptr = srcSamplesDataChannel, *zeroEnd = ptr + std::min(samplesCnt, std::max(0, skipSamples - d->fullSamples)), *end = ptr + fadedCnt;
|
||||
short *ptr = srcSamplesDataChannel, *zeroEnd = ptr + std::clamp(skipSamples - d->fullSamples, 0, samplesCnt), *end = ptr + fadedCnt;
|
||||
for (; ptr != zeroEnd; ++ptr, ++fadedFrom) {
|
||||
*ptr = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue