sparcians / map

Modeling Architectural Platform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PriorityQueue tries to initialize Datatype

h0lyalg0rithm opened this issue · comments

I am trying to use the new priority queue with an object whose constructor is marked as deleted.
Is there way to work around this, looking at the code I didnt see any other way than allowing default constructor calls on the object
Link to class

@knute-sifive @klingaard

You should not be using concrete objects in the PQ. Instead, you should use SpartaSharedPointers instead. Making copies of the original LoadStoreInfo objects is not efficient and you don't want to send a copy of the LSI down the pipe, right?

Got it makes sense