Skip to content

Commit

Permalink
Fix for ICE with 16.1.0 toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
sorinj committed May 22, 2019
1 parent 6fc7bfb commit 32d2611
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions omaha/main.scons
Expand Up @@ -465,8 +465,9 @@ win_env.AppendUnique(
'/std:c++17',
'/W4',
'/Wall',
'/WX', # warnings as errors
'/Zo', # better debugging support for optimized code
'/WX', # warnings as errors
'/Zc:twoPhase-', # avoids an ICE in service/service_main.h with 16.1.0.
'/Zo', # better debugging support for optimized code

#
# Disable the following level 4 warnings below.
Expand Down
1 change: 0 additions & 1 deletion omaha/ui/splash_screen.cc
Expand Up @@ -28,7 +28,6 @@
#include "omaha/common/lang.h"
#include "omaha/google_update/resource.h" // For the IDI_APP
#include "omaha/goopdate/non_localized_resource.h"
#include "omaha/ui/scoped_gdi.h"
#include "omaha/ui/ui.h"

namespace {
Expand Down

0 comments on commit 32d2611

Please sign in to comment.