I am in the process learning Juce/C ++ and have therefore gone through a number of the published tutorials. Now I have encountered a problem with the TableListBox tutorial. An exception is thrown if a value in ITEM contains the sign &. Like this:
The read access violation occurs in “juce_LinkedListPointer.h”:
/ ** Returns the item which this pointer points to. * /
inline ObjectType * get () const noexcept
{
return item;
}
Unfortunately, my C ++ skills have come so far that I know how to solve this. Any tips / suggestions?