diff --git a/src/bindx/macro/GenericError.hx b/src/bindx/macro/GenericError.hx index a7373f6..60c9dd1 100644 --- a/src/bindx/macro/GenericError.hx +++ b/src/bindx/macro/GenericError.hx @@ -3,7 +3,7 @@ package bindx.macro; import haxe.macro.Context; import haxe.macro.Expr.Position; -@:enum abstract WarnPriority(Int) to Int from Int { +enum abstract WarnPriority(Int) to Int from Int { var ALL = 2; var INFO = 1; var LOW = 0; @@ -53,4 +53,4 @@ class GenericError { public function contextFatal():Void { Context.fatalError(message, pos); } -} \ No newline at end of file +}