From 2151300ed9d083225d6863f97ed2d9cc5c522b3e Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Tue, 14 Nov 2023 22:30:24 +0100 Subject: [PATCH] Fix bookworm compiler issue --- cpp/piscsi/piscsi_response.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/piscsi/piscsi_response.h b/cpp/piscsi/piscsi_response.h index 0015655c..a4ab0331 100644 --- a/cpp/piscsi/piscsi_response.h +++ b/cpp/piscsi/piscsi_response.h @@ -25,7 +25,7 @@ class PiscsiResponse { public: - PiscsiResponse() = default; + PiscsiResponse() { } ~PiscsiResponse() = default; bool GetImageFile(PbImageFile&, const string&, const string&) const;