From 057a942d9e8441016f33134e4534846b0fa785d9 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 1 Nov 2017 04:43:22 +0000 Subject: [PATCH] clang/lib/Format/Format.cpp: Fix warnings introduced in rL316903. [-Wpedantic] llvm-svn: 317075 --- clang/lib/Format/Format.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index 0cd5398..2252dd9 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -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 { -- 2.7.4