0
Fixed

A small mistake in Flyweight in c++

dengyueyun666 il y a 3 ans mis à jour par Alexander Shvets il y a 3 ans 1

In the function of AddCarToPoliceDatabase, the last line is

flyweight.Operation({plates, owner});

I think this line should be change to 

flyweight.Operation({owner, plates});

In this way, the order of parameters are consistent with UniqueState constructor.