[cfe-commits] r85644 - /cfe/trunk/include/clang/Analysis/PathSensitive/BugType.h
Zhongxing Xu
xuzhongxing at gmail.com
Fri Oct 30 21:12:22 PDT 2009
Author: zhongxingxu
Date: Fri Oct 30 23:12:21 2009
New Revision: 85644
URL: http://llvm.org/viewvc/llvm-project?rev=85644&view=rev
Log:
Add header comments.
Modified:
cfe/trunk/include/clang/Analysis/PathSensitive/BugType.h
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/BugType.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/BugType.h?rev=85644&r1=85643&r2=85644&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/BugType.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/BugType.h Fri Oct 30 23:12:21 2009
@@ -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.
+//
+//===----------------------------------------------------------------------===//
-#include <llvm/ADT/FoldingSet.h>
+#ifndef LLVM_CLANG_ANALYSIS_BUGTYPE
+#define LLVM_CLANG_ANALYSIS_BUGTYPE
+#include <llvm/ADT/FoldingSet.h>
#include <string>
namespace clang {
More information about the cfe-commits
mailing list