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:
Vedant Kumar 2016-06-25 03:27:29 +00:00
parent f2f3d14774
commit 4f4e8d813d
1 changed files with 2 additions and 2 deletions

View File

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