mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Try to fix the MSVC build
There's some kind of issue with using "constexpr unsigned" in an anonymous namespace. http://lab.llvm.org:8011/builders/clang-x64-ninja-win7/builds/13395 llvm-svn: 273770
This commit is contained in:
parent
6dcbdd2d51
commit
e117e10095
@ -19,8 +19,8 @@ using namespace llvm;
|
||||
|
||||
namespace {
|
||||
|
||||
constexpr unsigned LineCoverageColumnWidth = 7;
|
||||
constexpr unsigned LineNumberColumnWidth = 5;
|
||||
static const unsigned LineCoverageColumnWidth = 7;
|
||||
static const unsigned LineNumberColumnWidth = 5;
|
||||
|
||||
/// \brief Get the width of the leading columns.
|
||||
unsigned getCombinedColumnWidth(const CoverageViewOptions &Opts) {
|
||||
|
Loading…
Reference in New Issue
Block a user