diff --git a/yaml/parser.nim b/yaml/parser.nim index 6844076..0b91811 100644 --- a/yaml/parser.nim +++ b/yaml/parser.nim @@ -14,6 +14,9 @@ import tables, strutils, macros, streams import taglib, stream, private/lex, private/internal +when defined(nimNoNil): + {.experimental: "notnil".} + type WarningCallback* = proc(line, column: int, lineContent: string, message: string)