Templated Binary Search Tree treats class as const, compiler complains

Timon Gehr timon.gehr at gmx.ch
Sun Jan 21 20:46:56 UTC 2018


On 21.01.2018 21:20, Mark wrote:
> Just realized that I commented out the creation of the BST
> 
> new link: https://dpaste.dzfl.pl/ce620cbee919
> 

'in' means 'const scope', but it seems you need references that are 
allowed to mutate the incoming items. Remove the 'in' attribute from the 
parameters and your problem should disappear.


More information about the Digitalmars-d-learn mailing list