summary refs log tree commit diff stats
path: root/compiler/semdestruct.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/semdestruct.nim')
-rw-r--r--compiler/semdestruct.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/semdestruct.nim b/compiler/semdestruct.nim
index 797d8895e..47d783818 100644
--- a/compiler/semdestruct.nim
+++ b/compiler/semdestruct.nim
@@ -15,9 +15,9 @@
 # generation (needed for recursive types)
 # 2) DestructorIsTrivial: completed the analysis before and determined
 # that the type has a trivial destructor
-var AnalyzingDestructor, DestructorIsTrivial: PSym
-new(AnalyzingDestructor)
-new(DestructorIsTrivial)
+var analyzingDestructor, destructorIsTrivial: PSym
+new(analyzingDestructor)
+new(destructorIsTrivial)
 
 var
   destructorName = getIdent"destroy_"