Skip to content

fix compilation errors

Virgile Prevosto requested to merge fix/compilation-errors into master

while trying to run initialize_PKM from pkm-api repository, I encountered two small compilation errors:

  • in AutoPointer.template the assign function has a void return type. Hence it shouldn't return *this
  • in VirtualMapCollection, _queryCount was using implementation as an object whereas it is a function. Based on the surrounding code, my guess is that it should have read tcImplementation.

Merge request reports