C++ SDK no destructor body #366
Labels
area/build-tools
Development tooling. I.e. pretty much everything in the `build` directory.
kind/cleanup
Refactoring code, fixing up documentation, etc
Milestone
For some time now I got weird linker errors when I try to
delete
pointer toagones::SDK
. When I looked at the source I saw that there is a destructor declared in the.h
file, but it is missing in the.cpp
file.There are a few ways to fix it:
~SDK();
agones::SDK::~SDK() { }
~SDK() = default;
The text was updated successfully, but these errors were encountered: