aboutsummaryrefslogtreecommitdiff
path: root/clang
diff options
context:
space:
mode:
authorJames Dennett <jdennett@google.com>2013-09-13 02:58:19 +0000
committerJames Dennett <jdennett@google.com>2013-09-13 02:58:19 +0000
commit7ac694e87eb30b0dcf23c4df9aeb6fde3a4b01ea (patch)
treedb0b069dea1e33358dc442d23abe499e87f2aa5c /clang
parentbba389b107026e06499bc1ba7dd9d3b5e1891fda (diff)
downloadllvm-7ac694e87eb30b0dcf23c4df9aeb6fde3a4b01ea.zip
llvm-7ac694e87eb30b0dcf23c4df9aeb6fde3a4b01ea.tar.gz
llvm-7ac694e87eb30b0dcf23c4df9aeb6fde3a4b01ea.tar.bz2
Documentation: Doxygen-ification of existing docs for Sema/DelayedDiagnostic.h.
llvm-svn: 190656
Diffstat (limited to 'clang')
-rw-r--r--clang/include/clang/Sema/DelayedDiagnostic.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/clang/include/clang/Sema/DelayedDiagnostic.h b/clang/include/clang/Sema/DelayedDiagnostic.h
index 3704e09..4f4a87f 100644
--- a/clang/include/clang/Sema/DelayedDiagnostic.h
+++ b/clang/include/clang/Sema/DelayedDiagnostic.h
@@ -6,16 +6,17 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
-//
-// This file defines the DelayedDiagnostic class, which is used to
-// record diagnostics that are being conditionally produced during
-// declarator parsing. Certain kinds of diagnostics --- notably
-// deprecation and access control --- are suppressed based on
-// semantic properties of the parsed declaration that aren't known
-// until it is fully parsed.
-//
-// This file also defines AccessedEntity.
-//
+///
+/// \file
+/// \brief Defines the classes clang::DelayedDiagnostic and
+/// clang::AccessedEntity.
+///
+/// DelayedDiangostic is used to record diagnostics that are being
+/// conditionally produced during declarator parsing. Certain kinds of
+/// diagnostics -- notably deprecation and access control -- are suppressed
+/// based on semantic properties of the parsed declaration that aren't known
+/// until it is fully parsed.
+///
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_SEMA_DELAYED_DIAGNOSTIC_H
@@ -224,8 +225,7 @@ private:
};
};
-/// DelayedDiagnosticPool - A collection of diagnostics which were
-/// delayed.
+/// \brief A collection of diagnostics which were delayed.
class DelayedDiagnosticPool {
const DelayedDiagnosticPool *Parent;
SmallVector<DelayedDiagnostic, 4> Diagnostics;