refactor(Core): apply clang-tidy modernize-redundant-void-arg (#3825)

This commit is contained in:
Francesco Borzì
2020-12-06 21:38:52 +01:00
committed by GitHub
parent cba126fa84
commit a7faf4a16f
15 changed files with 41 additions and 41 deletions

View File

@@ -39,7 +39,7 @@ namespace VMAP
public:
IVMapManager() : iEnableLineOfSightCalc(true), iEnableHeightCalc(true) { }
virtual ~IVMapManager(void) { }
virtual ~IVMapManager() { }
virtual int loadMap(const char* pBasePath, unsigned int pMapId, int x, int y) = 0;

View File

@@ -85,7 +85,7 @@ namespace VMAP
static std::string getMapFileName(unsigned int mapId);
VMapManager2();
~VMapManager2(void) override;
~VMapManager2() override;
int loadMap(const char* pBasePath, unsigned int mapId, int x, int y) override;