r317075 - clang/lib/Format/Format.cpp: Fix warnings introduced in rL316903. [-Wpedantic]

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 31 21:43:23 PDT 2017


Author: chapuni
Date: Tue Oct 31 21:43:22 2017
New Revision: 317075

URL: http://llvm.org/viewvc/llvm-project?rev=317075&view=rev
Log:
clang/lib/Format/Format.cpp: Fix warnings introduced in rL316903. [-Wpedantic]

Modified:
    cfe/trunk/lib/Format/Format.cpp

Modified: cfe/trunk/lib/Format/Format.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/Format.cpp?rev=317075&r1=317074&r2=317075&view=diff
==============================================================================
--- cfe/trunk/lib/Format/Format.cpp (original)
+++ cfe/trunk/lib/Format/Format.cpp Tue Oct 31 21:43:22 2017
@@ -45,8 +45,8 @@
 
 using clang::format::FormatStyle;
 
-LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::IncludeCategory);
-LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::RawStringFormat);
+LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::IncludeCategory)
+LLVM_YAML_IS_SEQUENCE_VECTOR(clang::format::FormatStyle::RawStringFormat)
 
 namespace llvm {
 namespace yaml {




More information about the cfe-commits mailing list