[llvm-commits] [hlvm] r37979 - /hlvm/trunk/hlvm/AST/Node.h
Reid Spencer
reid at x10sys.com
Sat Jul 7 16:58:36 PDT 2007
Author: reid
Date: Sat Jul 7 18:58:35 2007
New Revision: 37979
URL: http://llvm.org/viewvc/llvm-project?rev=37979&view=rev
Log:
Add comments about the HLVM and AST namespaces, for doxygen's benefit
Modified:
hlvm/trunk/hlvm/AST/Node.h
Modified: hlvm/trunk/hlvm/AST/Node.h
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/AST/Node.h?rev=37979&r1=37978&r2=37979&view=diff
==============================================================================
--- hlvm/trunk/hlvm/AST/Node.h (original)
+++ hlvm/trunk/hlvm/AST/Node.h Sat Jul 7 18:58:35 2007
@@ -27,8 +27,13 @@
#include <vector>
#include <string>
+/// This namespace is for all HLVM software. It ensures that HLVM software does
+/// not collide with any other software. Hopefully HLVM is not a namespace used
+/// elsewhere.
namespace hlvm
{
+/// This namespace contains all the AST (Abstract Syntax Tree) module code. All
+/// node types of the AST are declared in this namespace.
namespace AST
{
class Type;
More information about the llvm-commits
mailing list