From 4437658aff84fa25563740c806a091de1395e5f4 Mon Sep 17 00:00:00 2001 From: Hal Finkel Date: Tue, 2 Sep 2014 22:26:06 +0000 Subject: [PATCH] [CFLAA] LLVM_CONSTEXPR -> const The number is just a constant, and this should make MSVC happy (or at least happier). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216981 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/StratifiedSets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/StratifiedSets.h b/lib/Analysis/StratifiedSets.h index c03abe3c678..3000d5bce81 100644 --- a/lib/Analysis/StratifiedSets.h +++ b/lib/Analysis/StratifiedSets.h @@ -38,7 +38,7 @@ struct StratifiedInfo { // The number of attributes that StratifiedAttrs should contain. Attributes are // described below, and 32 was an arbitrary choice because it fits nicely in 32 // bits (because we use a bitset for StratifiedAttrs). -static LLVM_CONSTEXPR unsigned NumStratifiedAttrs = 32; +static const unsigned NumStratifiedAttrs = 32; // These are attributes that the users of StratifiedSets/StratifiedSetBuilders // may use for various purposes. These also have the special property of that -- 2.34.1