mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Wrap the struct in an anonymous namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125452 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
74542aa500
commit
d91ef79c43
@ -187,11 +187,13 @@ void ClangDiagsDefsEmitter::run(raw_ostream &OS) {
|
|||||||
// Warning Group Tables generation
|
// Warning Group Tables generation
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
namespace {
|
||||||
struct GroupInfo {
|
struct GroupInfo {
|
||||||
std::vector<const Record*> DiagsInGroup;
|
std::vector<const Record*> DiagsInGroup;
|
||||||
std::vector<std::string> SubGroups;
|
std::vector<std::string> SubGroups;
|
||||||
unsigned IDNo;
|
unsigned IDNo;
|
||||||
};
|
};
|
||||||
|
} // end anonymous namespace.
|
||||||
|
|
||||||
void ClangDiagGroupsEmitter::run(raw_ostream &OS) {
|
void ClangDiagGroupsEmitter::run(raw_ostream &OS) {
|
||||||
// Compute a mapping from a DiagGroup to all of its parents.
|
// Compute a mapping from a DiagGroup to all of its parents.
|
||||||
|
Loading…
Reference in New Issue
Block a user