summaryrefslogtreecommitdiffstats
path: root/tools/slang-cpp-extractor/diagnostics.cpp
blob: 3abbe1b38159f4c660771b7fbe6211273597fa51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "diagnostics.h"

namespace CppExtract {

namespace CPPDiagnostics
{
using namespace Slang;

#define DIAGNOSTIC(id, severity, name, messageFormat) const DiagnosticInfo name = { id, Severity::severity, #name, messageFormat };
#include "diagnostic-defs.h"
}

} // namespace CppExtract