bsnes-emu / bsnes

bsnes is a Super Nintendo (SNES) emulator focused on performance, features, and ease of use.
Other
1.69k stars 158 forks source link

Fix vector<T>::acquire() arguments #182

Closed Morilli closed 3 years ago

Morilli commented 3 years ago

This would fail to compile previously because _pool, which is of type T*, is assigned a variable of type const T* which results in a compiler error. Note that this does not affect bsnes at all because this function is unused.

Screwtapello commented 3 years ago

Thanks for reporting this!