POV-Ray : Newsgroups : povray.bugreports : Can't #undef a dict item that contains an array or dict : Can't #undef a dict item that contains an array or dict Server Time
12 May 2024 00:22:14 EDT (-0400)
  Can't #undef a dict item that contains an array or dict  
From: ingo
Date: 24 Jun 2023 09:10:00
Message: <web.6496ea4a662ea7f17bac71e8ffb8ce3@news.povray.org>
---%<------%<------%<---
#version 3.8;

#declare D = dictionary{
  ["test"]:"test",
  ["Arr"]: array{1,2},
  ["Dict"]: dictionary{["1"]:1}  //parse error: Tried to free undefined symbol
} ;

#undef D["test"]

#undef D["Arr"] //parse error: Tried to free undefined symbol

#undef D["Dict"] //parse error: Tried to free undefined symbol

---%<------%<------%<---

Win11, Persistence of Vision(tm) Ray Tracer Version
3.8.0-beta.2+gh7.msvc14.win64

ingo


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.