[Refactoring] set current standart to c++17 and change any logic to std::clamp (if it's possible)

This commit is contained in:
Pavel Perekhozhikh 2018-01-28 01:34:06 +03:00 committed by Berkus Decker
parent 40f8f0939a
commit 1cb6dcee54
8 changed files with 9 additions and 27 deletions

View File

@ -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)

View File

@ -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()

View File

@ -1334,7 +1334,7 @@ void ApiWrap::resolveWebPages() {
}
}
} else {
m = std::min(m, i.key()->pendingTill - t);
m = std::min(m, i.key()->pendingTill - t);
}
}

View File

@ -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) {

View File

@ -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) {

View File

@ -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>

View File

@ -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) {

View File

@ -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;
}