From b75f01e0870700610003f19befd9e7c3b08d3484 Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Mon, 30 Dec 2024 12:16:11 +0100 Subject: [PATCH] Remove constructor --- cpp/shared/simh_util.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpp/shared/simh_util.h b/cpp/shared/simh_util.h index 6237bb41..60894506 100644 --- a/cpp/shared/simh_util.h +++ b/cpp/shared/simh_util.h @@ -44,8 +44,6 @@ enum class SimhMarker }; using SimhMetaData = struct _SimhMetaData { - _SimhMetaData(SimhClass c = SimhClass::BAD_DATA_RECORD, uint32_t v = 0) : cls(c), value(v) {} - SimhClass cls; uint32_t value; };