diff options
author | Hal Finkel <hfinkel@anl.gov> | 2014-09-02 23:29:48 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2014-09-02 23:29:48 +0000 |
commit | ca616acd730b6e3425fa5a5ed49ade83d0e726ed (patch) | |
tree | 8f341d7584d00b8c63051db0b471410faf6e12fa /llvm/lib/Analysis/StratifiedSets.h | |
parent | c0eb15304ecea700f8535bf649f01fe98aef6c19 (diff) | |
download | bcm5719-llvm-ca616acd730b6e3425fa5a5ed49ade83d0e726ed.tar.gz bcm5719-llvm-ca616acd730b6e3425fa5a5ed49ade83d0e726ed.zip |
[CFLAA] More cleanup for MSVC
Remove more initializer lists, etc.
llvm-svn: 216994
Diffstat (limited to 'llvm/lib/Analysis/StratifiedSets.h')
-rw-r--r-- | llvm/lib/Analysis/StratifiedSets.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/StratifiedSets.h b/llvm/lib/Analysis/StratifiedSets.h index 72f67a5f49b..8a04bb302bf 100644 --- a/llvm/lib/Analysis/StratifiedSets.h +++ b/llvm/lib/Analysis/StratifiedSets.h @@ -54,8 +54,8 @@ struct StratifiedLink { // Optional<StratifiedIndex> because Optional<StratifiedIndex> would // eat up a considerable amount of extra memory, after struct // padding/alignment is taken into account. - static LLVM_CONSTEXPR auto SetSentinel = - std::numeric_limits<StratifiedIndex>::max(); + static const auto SetSentinel = + std::numeric_limits<StratifiedIndex>::max(); // \brief The index for the set "above" current StratifiedIndex Above; |