constexpr -> const to appease MSVC bots.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 13 Apr 2016 07:47:38 +0000 (07:47 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 13 Apr 2016 07:47:38 +0000 (07:47 +0000)
llvm-svn: 266178

clang/include/clang/Serialization/ASTWriter.h

index 094af45..8b7d500 100644 (file)
@@ -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.