From a0c222b3c6f24e147bdfd3edd2b9097df9d422ef Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Mon, 20 Jan 2020 14:23:28 +0100 Subject: [PATCH] constructor --- slsSupportLib/include/sls_detector_defs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/slsSupportLib/include/sls_detector_defs.h b/slsSupportLib/include/sls_detector_defs.h index 5e6823adf..54a260fd1 100755 --- a/slsSupportLib/include/sls_detector_defs.h +++ b/slsSupportLib/include/sls_detector_defs.h @@ -211,6 +211,8 @@ class slsDetectorDefs { struct xy { int x{0}; int y{0}; + xy() = default; + xy(int x, int y):x(x),y(y){}; }; #endif