PorygonLang/src/Diagnostics/DiagnosticSeverity.hpp

14 lines
257 B
C++
Raw Normal View History

2019-05-21 11:56:08 +00:00
#ifndef PORYGONLANG_DIAGNOSTICSEVERITY_HPP
#define PORYGONLANG_DIAGNOSTICSEVERITY_HPP
2019-06-18 14:39:36 +00:00
namespace Porygon::Diagnostics {
enum class DiagnosticSeverity {
Info,
Warning,
Error,
};
}
2019-05-21 11:56:08 +00:00
#endif //PORYGONLANG_DIAGNOSTICSEVERITY_HPP