Convert comments to proper Doxygen comments.

llvm-svn: 158241
This commit is contained in:
Dmitri Gribenko 2012-06-08 23:13:42 +00:00
parent 4ceb928f02
commit 4280e5cf97
7 changed files with 23 additions and 23 deletions

View File

@ -1215,10 +1215,10 @@ public:
const TemplateArgument &ArgPack) const;
enum GetBuiltinTypeError {
GE_None, //< No error
GE_Missing_stdio, //< Missing a type from <stdio.h>
GE_Missing_setjmp, //< Missing a type from <setjmp.h>
GE_Missing_ucontext //< Missing a type from <ucontext.h>
GE_None, ///< No error
GE_Missing_stdio, ///< Missing a type from <stdio.h>
GE_Missing_setjmp, ///< Missing a type from <setjmp.h>
GE_Missing_ucontext ///< Missing a type from <ucontext.h>
};
/// GetBuiltinType - Return the type for the specified builtin. If

View File

@ -63,10 +63,10 @@ namespace clang {
/// one).
enum Mapping {
// NOTE: 0 means "uncomputed".
MAP_IGNORE = 1, //< Map this diagnostic to nothing, ignore it.
MAP_WARNING = 2, //< Map this diagnostic to a warning.
MAP_ERROR = 3, //< Map this diagnostic to an error.
MAP_FATAL = 4 //< Map this diagnostic to a fatal error.
MAP_IGNORE = 1, ///< Map this diagnostic to nothing, ignore it.
MAP_WARNING = 2, ///< Map this diagnostic to a warning.
MAP_ERROR = 3, ///< Map this diagnostic to an error.
MAP_FATAL = 4 ///< Map this diagnostic to a fatal error.
};
}

View File

@ -34,8 +34,8 @@ public:
virtual ~FileSystemStatCache() {}
enum LookupResult {
CacheExists, //< We know the file exists and its cached stat data.
CacheMissing //< We know that the file doesn't exist.
CacheExists, ///< We know the file exists and its cached stat data.
CacheMissing ///< We know that the file doesn't exist.
};
/// FileSystemStatCache::get - Get the 'stat' information for the specified

View File

@ -19,7 +19,7 @@ namespace clang {
/// OverloadedOperatorKind - Enumeration specifying the different kinds of
/// C++ overloaded operators.
enum OverloadedOperatorKind {
OO_None, //< Not an overloaded operator
OO_None, ///< Not an overloaded operator
#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
OO_##Name,
#include "clang/Basic/OperatorKinds.def"

View File

@ -638,10 +638,10 @@ class CodeCompletionResult {
public:
/// \brief Describes the kind of result generated.
enum ResultKind {
RK_Declaration = 0, //< Refers to a declaration
RK_Keyword, //< Refers to a keyword or symbol.
RK_Macro, //< Refers to a macro
RK_Pattern //< Refers to a precomputed pattern.
RK_Declaration = 0, ///< Refers to a declaration
RK_Keyword, ///< Refers to a keyword or symbol.
RK_Macro, ///< Refers to a macro
RK_Pattern ///< Refers to a precomputed pattern.
};
/// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are

View File

@ -33,11 +33,11 @@ class InclusionRewriter : public PPCallbacks {
FileChange(SourceLocation From) : From(From) {
}
};
Preprocessor &PP; //< Used to find inclusion directives.
SourceManager &SM; //< Used to read and manage source files.
raw_ostream &OS; //< The destination stream for rewritten contents.
bool ShowLineMarkers; //< Show #line markers.
bool UseLineDirective; //< Use of line directives or line markers.
Preprocessor &PP; ///< Used to find inclusion directives.
SourceManager &SM; ///< Used to read and manage source files.
raw_ostream &OS; ///< The destination stream for rewritten contents.
bool ShowLineMarkers; ///< Show #line markers.
bool UseLineDirective; ///< Use of line directives or line markers.
typedef std::map<unsigned, FileChange> FileChangeMap;
FileChangeMap FileChanges; /// Tracks which files were included where.
/// Used transitively for building up the FileChanges mapping over the

View File

@ -4620,9 +4620,9 @@ void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
/// \brief Descripts the kind of Objective-C method that we want to find
/// via code completion.
enum ObjCMethodKind {
MK_Any, //< Any kind of method, provided it means other specified criteria.
MK_ZeroArgSelector, //< Zero-argument (unary) selector.
MK_OneArgSelector //< One-argument selector.
MK_Any, ///< Any kind of method, provided it means other specified criteria.
MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
MK_OneArgSelector ///< One-argument selector.
};
static bool isAcceptableObjCSelector(Selector Sel,