Remove MSVC compiler bug workaround.

It works fine in Visual Studio 2017 15.7.1.
This commit is contained in:
John Preston 2018-05-17 11:15:52 +03:00
parent 4bcd1e3c59
commit 694e8cd19f
1 changed files with 7 additions and 26 deletions

View File

@ -248,21 +248,11 @@ Cover::Cover(
void Cover::setupChildGeometry() { void Cover::setupChildGeometry() {
using namespace rpl::mappers; using namespace rpl::mappers;
//
// Visual Studio 2017 15.5.1 internal compiler error here.
// See https://developercommunity.visualstudio.com/content/problem/165155/ice-regression-in-1551-after-successfull-build-in.html
//
//rpl::combine(
// toggleShownValue(),
// widthValue(),
// _2
//) | rpl::map([](bool shown, int width) {
rpl::combine( rpl::combine(
toggleShownValue(), toggleShownValue(),
widthValue() widthValue(),
) | rpl::map([](bool shown, int width) { _2
return width; ) | rpl::start_with_next([this](int newWidth) {
}) | rpl::start_with_next([this](int newWidth) {
_userpic->moveToLeft( _userpic->moveToLeft(
st::infoProfilePhotoLeft, st::infoProfilePhotoLeft,
st::infoProfilePhotoTop, st::infoProfilePhotoTop,
@ -453,21 +443,12 @@ void SharedMediaCover::createLabel() {
Lang::Viewer(lng_profile_shared_media) | ToUpperValue(), Lang::Viewer(lng_profile_shared_media) | ToUpperValue(),
st::infoBlockHeaderLabel); st::infoBlockHeaderLabel);
label->setAttribute(Qt::WA_TransparentForMouseEvents); label->setAttribute(Qt::WA_TransparentForMouseEvents);
//
// Visual Studio 2017 15.5.1 internal compiler error here.
// See https://developercommunity.visualstudio.com/content/problem/165155/ice-regression-in-1551-after-successfull-build-in.html
//
//rpl::combine(
// toggleShownValue(),
// widthValue(),
// _2
//) | rpl::map([](bool shown, int width) {
rpl::combine( rpl::combine(
toggleShownValue(), toggleShownValue(),
widthValue() widthValue(),
) | rpl::map([](bool shown, int width) { _2
return width; ) | rpl::start_with_next([this, weak = label.data()](int newWidth) {
}) | rpl::start_with_next([this, weak = label.data()](int newWidth) {
auto availableWidth = newWidth auto availableWidth = newWidth
- st::infoBlockHeaderPosition.x() - st::infoBlockHeaderPosition.x()
- st::infoSharedMediaButton.padding.right() - st::infoSharedMediaButton.padding.right()