r368754 - Add a missing header comment, NFC

Erik Pilkington via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 13 15:01:39 PDT 2019


Author: epilk
Date: Tue Aug 13 15:01:39 2019
New Revision: 368754

URL: http://llvm.org/viewvc/llvm-project?rev=368754&view=rev
Log:
Add a missing header comment, NFC

Modified:
    cfe/trunk/lib/AST/FormatStringParsing.h

Modified: cfe/trunk/lib/AST/FormatStringParsing.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/FormatStringParsing.h?rev=368754&r1=368753&r2=368754&view=diff
==============================================================================
--- cfe/trunk/lib/AST/FormatStringParsing.h (original)
+++ cfe/trunk/lib/AST/FormatStringParsing.h Tue Aug 13 15:01:39 2019
@@ -1,3 +1,16 @@
+//===----- FormatStringParsing.h - Format String Parsing --------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// This provides some shared functions between printf and scanf format string
+// parsing code.
+//
+//===----------------------------------------------------------------------===//
+
 #ifndef LLVM_CLANG_LIB_ANALYSIS_FORMATSTRINGPARSING_H
 #define LLVM_CLANG_LIB_ANALYSIS_FORMATSTRINGPARSING_H
 




More information about the cfe-commits mailing list