An auto variable being assigned to may cause a copy of the object, even
if only a reference is necessary (and desired). That can easily be cause
for performance issues, especially in for loops.
This change fixes one such problem found in the NK_list_devices_by_cpuID
function.
An
auto
variable being assigned to may cause a copy of the object, even if only a reference is necessary (and desired). That can easily be cause for performance issues, especially infor
loops. This change fixes one such problem found in theNK_list_devices_by_cpuID
function.