Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit) (+2)

Memory leaks found in source.

Source\HammUEr\Private\InstanceDataHandler.h(25)
Source\HammUEr\Private\MapFileLoader.h(171)
Source\HammUEr\Private\MapFileLoader.h(172)
Source\HammUEr\Private\MapFileLoader.h(173)
Source\HammUEr\Private\MapFileLoader.cpp(2143)

empty() call to std::vector is used, which checks if the vector is empty (returns bool), but your usages discard the value. You most likely meant to use clear(), which erases all elements of the vector.

Good catch.
That's what happens when you try to marry two systems that use the same term for opposite things.
Fixed in the 4.22 build.