diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-10-31 04:12:21 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-10-31 04:12:21 +0000 |
commit | 507eec8d849fd86ac42ebdae2a343f9ab64fb274 (patch) | |
tree | f7853c2a9f79181a5c9ccba7e2634c99ccda725f | |
parent | ff04174fc6a17441b75bd2e611cbe9e6809853fd (diff) |
Add header comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85644 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/BugType.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/include/clang/Analysis/PathSensitive/BugType.h b/include/clang/Analysis/PathSensitive/BugType.h index 955622a1ef..a22266455a 100644 --- a/include/clang/Analysis/PathSensitive/BugType.h +++ b/include/clang/Analysis/PathSensitive/BugType.h @@ -1,8 +1,20 @@ -#ifndef LLVM_CLANG_BUGTYPE -#define LLVM_CLANG_BUGTYPE +//===--- BugType.h - Bug Information Desciption ----------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines BugType, a class representing a bug tpye. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_ANALYSIS_BUGTYPE +#define LLVM_CLANG_ANALYSIS_BUGTYPE #include <llvm/ADT/FoldingSet.h> - #include <string> namespace clang { |