[cfe-commits] r75435 - /cfe/trunk/include/clang/Index/Program.h

Chris Lattner sabre at nondot.org
Sun Jul 12 15:30:00 PDT 2009


Author: lattner
Date: Sun Jul 12 17:29:59 2009
New Revision: 75435

URL: http://llvm.org/viewvc/llvm-project?rev=75435&view=rev
Log:
improve comments.

Modified:
    cfe/trunk/include/clang/Index/Program.h

Modified: cfe/trunk/include/clang/Index/Program.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Index/Program.h?rev=75435&r1=75434&r2=75435&view=diff

==============================================================================
--- cfe/trunk/include/clang/Index/Program.h (original)
+++ cfe/trunk/include/clang/Index/Program.h Sun Jul 12 17:29:59 2009
@@ -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 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;
 





More information about the cfe-commits mailing list