Fix serialization object

This commit is contained in:
Joakim Hove 2020-11-13 18:03:15 +01:00
parent e35febde59
commit 7f2c06f5b0

View File

@ -69,7 +69,7 @@ PAvg::PAvg(double inner_weight, double conn_weight, DepthCorrection depth_correc
m_open_connections(use_open_connections)
{}
static PAvg serializeObject() {
PAvg PAvg::serializeObject() {
return PAvg(0.10, 0.30, PAvg::DepthCorrection::NONE, false);
}