From 9cb0a0887bd9c09761f22e06369df10d25e0651f Mon Sep 17 00:00:00 2001 From: James Dennett Date: Sun, 17 Jun 2012 03:43:32 +0000 Subject: [PATCH] Documentation cleanup: escape "::" to eliminate a Doxygen warning llvm-svn: 158620 --- clang/include/clang/AST/ASTContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/ASTContext.h b/clang/include/clang/AST/ASTContext.h index cb2f694c97fe..6ceed17eb892 100644 --- a/clang/include/clang/AST/ASTContext.h +++ b/clang/include/clang/AST/ASTContext.h @@ -1473,7 +1473,7 @@ public: /// be used to refer to a given template. For most templates, this /// expression is just the template declaration itself. For example, /// the template std::vector can be referred to via a variety of - /// names---std::vector, ::std::vector, vector (if vector is in + /// names---std::vector, \::std::vector, vector (if vector is in /// scope), etc.---but all of these names map down to the same /// TemplateDecl, which is used to form the canonical template name. ///