Selaa lähdekoodia

constexpr -> const to appease MSVC bots.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@266178 91177308-0d34-0410-b5e6-96231b3b80d8
Richard Smith 9 vuotta sitten
vanhempi
commit
f637449a38
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      include/clang/Serialization/ASTWriter.h

+ 1 - 1
include/clang/Serialization/ASTWriter.h

@@ -787,7 +787,7 @@ class ASTRecordWriter {
   /// declaration or type.
   SmallVector<Stmt *, 16> StmtsToEmit;
 
-  static constexpr int MaxOffsetIndices = 4;
+  static const int MaxOffsetIndices = 4;
   /// \brief Indices of record elements that describe offsets within the
   /// bitcode. These will be converted to offsets relative to the current
   /// record when emitted.