14 lines
257 B
C++
14 lines
257 B
C++
|
|
#ifndef PORYGONLANG_DIAGNOSTICSEVERITY_HPP
|
|
#define PORYGONLANG_DIAGNOSTICSEVERITY_HPP
|
|
|
|
namespace Porygon::Diagnostics {
|
|
enum class DiagnosticSeverity {
|
|
Info,
|
|
Warning,
|
|
Error,
|
|
};
|
|
}
|
|
|
|
#endif //PORYGONLANG_DIAGNOSTICSEVERITY_HPP
|