Skip to content

Commit 32056aa

Browse files
committed
[docs] Fix doxygen markers for grouping methods. NFC.
1 parent efcb07b commit 32056aa

File tree

1 file changed

+40
-40
lines changed

1 file changed

+40
-40
lines changed

clang/include/clang/Frontend/CompilerInstance.h

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ class CompilerInstance : public ModuleLoader {
189189
~CompilerInstance() override;
190190

191191
/// @name High-Level Operations
192-
/// {
192+
/// @{
193193

194194
/// ExecuteAction - Execute the provided action against the compiler's
195195
/// CompilerInvocation object.
@@ -223,9 +223,9 @@ class CompilerInstance : public ModuleLoader {
223223
/// Load the list of plugins requested in the \c FrontendOptions.
224224
void LoadRequestedPlugins();
225225

226-
/// }
226+
/// @}
227227
/// @name Compiler Invocation and Options
228-
/// {
228+
/// @{
229229

230230
bool hasInvocation() const { return Invocation != nullptr; }
231231

@@ -248,9 +248,9 @@ class CompilerInstance : public ModuleLoader {
248248
BuildGlobalModuleIndex = Build;
249249
}
250250

251-
/// }
251+
/// @}
252252
/// @name Forwarding Methods
253-
/// {
253+
/// @{
254254

255255
AnalyzerOptionsRef getAnalyzerOpts() {
256256
return Invocation->getAnalyzerOpts();
@@ -329,9 +329,9 @@ class CompilerInstance : public ModuleLoader {
329329
return Invocation->getTargetOpts();
330330
}
331331

332-
/// }
332+
/// @}
333333
/// @name Diagnostics Engine
334-
/// {
334+
/// @{
335335

336336
bool hasDiagnostics() const { return Diagnostics != nullptr; }
337337

@@ -355,9 +355,9 @@ class CompilerInstance : public ModuleLoader {
355355
return *Diagnostics->getClient();
356356
}
357357

358-
/// }
358+
/// @}
359359
/// @name VerboseOutputStream
360-
/// }
360+
/// @{
361361

362362
/// Replace the current stream for verbose output.
363363
void setVerboseOutputStream(raw_ostream &Value);
@@ -370,9 +370,9 @@ class CompilerInstance : public ModuleLoader {
370370
return *VerboseOutputStream;
371371
}
372372

373-
/// }
373+
/// @}
374374
/// @name Target Info
375-
/// {
375+
/// @{
376376

377377
bool hasTarget() const { return Target != nullptr; }
378378

@@ -389,9 +389,9 @@ class CompilerInstance : public ModuleLoader {
389389
/// Replace the current Target.
390390
void setTarget(TargetInfo *Value);
391391

392-
/// }
392+
/// @}
393393
/// @name AuxTarget Info
394-
/// {
394+
/// @{
395395

396396
TargetInfo *getAuxTarget() const { return AuxTarget.get(); }
397397

@@ -401,15 +401,15 @@ class CompilerInstance : public ModuleLoader {
401401
// Create Target and AuxTarget based on current options
402402
bool createTarget();
403403

404-
/// }
404+
/// @}
405405
/// @name Virtual File System
406-
/// {
406+
/// @{
407407

408408
llvm::vfs::FileSystem &getVirtualFileSystem() const;
409409

410-
/// }
410+
/// @}
411411
/// @name File Manager
412-
/// {
412+
/// @{
413413

414414
bool hasFileManager() const { return FileMgr != nullptr; }
415415

@@ -432,9 +432,9 @@ class CompilerInstance : public ModuleLoader {
432432
/// Replace the current file manager and virtual file system.
433433
void setFileManager(FileManager *Value);
434434

435-
/// }
435+
/// @}
436436
/// @name Source Manager
437-
/// {
437+
/// @{
438438

439439
bool hasSourceManager() const { return SourceMgr != nullptr; }
440440

@@ -457,9 +457,9 @@ class CompilerInstance : public ModuleLoader {
457457
/// setSourceManager - Replace the current source manager.
458458
void setSourceManager(SourceManager *Value);
459459

460-
/// }
460+
/// @}
461461
/// @name Preprocessor
462-
/// {
462+
/// @{
463463

464464
bool hasPreprocessor() const { return PP != nullptr; }
465465

@@ -478,9 +478,9 @@ class CompilerInstance : public ModuleLoader {
478478
/// Replace the current preprocessor.
479479
void setPreprocessor(std::shared_ptr<Preprocessor> Value);
480480

481-
/// }
481+
/// @}
482482
/// @name ASTContext
483-
/// {
483+
/// @{
484484

485485
bool hasASTContext() const { return Context != nullptr; }
486486

@@ -506,9 +506,9 @@ class CompilerInstance : public ModuleLoader {
506506
/// of S.
507507
void setSema(Sema *S);
508508

509-
/// }
509+
/// @}
510510
/// @name ASTConsumer
511-
/// {
511+
/// @{
512512

513513
bool hasASTConsumer() const { return (bool)Consumer; }
514514

@@ -525,9 +525,9 @@ class CompilerInstance : public ModuleLoader {
525525
/// takes ownership of \p Value.
526526
void setASTConsumer(std::unique_ptr<ASTConsumer> Value);
527527

528-
/// }
528+
/// @}
529529
/// @name Semantic analysis
530-
/// {
530+
/// @{
531531
bool hasSema() const { return (bool)TheSema; }
532532

533533
Sema &getSema() const {
@@ -538,9 +538,9 @@ class CompilerInstance : public ModuleLoader {
538538
std::unique_ptr<Sema> takeSema();
539539
void resetAndLeakSema();
540540

541-
/// }
541+
/// @}
542542
/// @name Module Management
543-
/// {
543+
/// @{
544544

545545
IntrusiveRefCntPtr<ASTReader> getASTReader() const;
546546
void setASTReader(IntrusiveRefCntPtr<ASTReader> Reader);
@@ -581,9 +581,9 @@ class CompilerInstance : public ModuleLoader {
581581
return *Reader;
582582
}
583583

584-
/// }
584+
/// @}
585585
/// @name Code Completion
586-
/// {
586+
/// @{
587587

588588
bool hasCodeCompletionConsumer() const { return (bool)CompletionConsumer; }
589589

@@ -597,9 +597,9 @@ class CompilerInstance : public ModuleLoader {
597597
/// the compiler instance takes ownership of \p Value.
598598
void setCodeCompletionConsumer(CodeCompleteConsumer *Value);
599599

600-
/// }
600+
/// @}
601601
/// @name Frontend timer
602-
/// {
602+
/// @{
603603

604604
bool hasFrontendTimer() const { return (bool)FrontendTimer; }
605605

@@ -608,19 +608,19 @@ class CompilerInstance : public ModuleLoader {
608608
return *FrontendTimer;
609609
}
610610

611-
/// }
611+
/// @}
612612
/// @name Output Files
613-
/// {
613+
/// @{
614614

615615
/// clearOutputFiles - Clear the output file list. The underlying output
616616
/// streams must have been closed beforehand.
617617
///
618618
/// \param EraseFiles - If true, attempt to erase the files from disk.
619619
void clearOutputFiles(bool EraseFiles);
620620

621-
/// }
621+
/// @}
622622
/// @name Construction Utility Methods
623-
/// {
623+
/// @{
624624

625625
/// Create the diagnostics engine using the invocation's diagnostic options
626626
/// and replace any existing one with it.
@@ -769,9 +769,9 @@ class CompilerInstance : public ModuleLoader {
769769
public:
770770
std::unique_ptr<raw_pwrite_stream> createNullOutputFile();
771771

772-
/// }
772+
/// @}
773773
/// @name Initialization Utility Methods
774-
/// {
774+
/// @{
775775

776776
/// InitializeSourceManager - Initialize the source manager to set InputFile
777777
/// as the main file.
@@ -788,7 +788,7 @@ class CompilerInstance : public ModuleLoader {
788788
FileManager &FileMgr,
789789
SourceManager &SourceMgr);
790790

791-
/// }
791+
/// @}
792792

793793
void setOutputStream(std::unique_ptr<llvm::raw_pwrite_stream> OutStream) {
794794
OutputStream = std::move(OutStream);

0 commit comments

Comments
 (0)