diff options
Diffstat (limited to 'compiler/ast.nim')
-rw-r--r-- | compiler/ast.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ast.nim b/compiler/ast.nim index 55ad2ba4b..33edcc953 100644 --- a/compiler/ast.nim +++ b/compiler/ast.nim @@ -289,7 +289,7 @@ type sfTemplateParam # symbol is a template parameter sfCursor # variable/field is a cursor, see RFC 177 for details sfInjectDestructors # whether the proc needs the 'injectdestructors' transformation - sfAlwaysReturn # proc can never raise an exception, not even OverflowError + sfNeverRaises # proc can never raise an exception, not even OverflowError # or out-of-memory TSymFlags* = set[TSymFlag] |