diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-12 22:29:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-12 22:29:59 +0000 |
commit | 176e8d404f49952104a136635a4bbfe31a927a50 (patch) | |
tree | b87853431ae5a782f5782deee173b44cd73eef3e /include/clang/Index/Program.h | |
parent | 3401cf879f6d49014b031ed6879b84550b9672c7 (diff) |
improve comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75435 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Index/Program.h')
-rw-r--r-- | include/clang/Index/Program.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/clang/Index/Program.h b/include/clang/Index/Program.h index 30afa0be46..1a08118ca5 100644 --- a/include/clang/Index/Program.h +++ b/include/clang/Index/Program.h @@ -1,4 +1,4 @@ -//===--- Program.h - Entity originator and misc -----------------*- C++ -*-===// +//===--- Program.h - Cross-translation unit information ---------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// Storage for Entities and utility functions +// This file declares the idx::Program interface. // //===----------------------------------------------------------------------===// @@ -20,7 +20,8 @@ namespace clang { namespace idx { class EntityHandler; -/// \brief Repository for Entities. +/// idx::Program is the top level object that owns and maintains information +/// that is common across translation units. class Program { void *Impl; |