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 | c638161d382ae5a4ccb9401d5b3db83308d5c9e0 (patch) | |
tree | e4119d6944742699098bbf1c4bb3ce01efb2dc68 /clang | |
parent | 92ce8381f53a0629e2a63df98e80199318d22f12 (diff) | |
download | bcm5719-llvm-c638161d382ae5a4ccb9401d5b3db83308d5c9e0.tar.gz bcm5719-llvm-c638161d382ae5a4ccb9401d5b3db83308d5c9e0.zip |
improve comments.
llvm-svn: 75435
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/Index/Program.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/include/clang/Index/Program.h b/clang/include/clang/Index/Program.h index 30afa0be469..1a08118ca57 100644 --- a/clang/include/clang/Index/Program.h +++ b/clang/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; |