From f5d2b40c9e0364335a9ef50997e13988adeeb019 Mon Sep 17 00:00:00 2001 From: Jeff Young <jeff@rokeby.ie> Date: Sun, 2 Mar 2025 17:05:42 +0000 Subject: [PATCH] Compiler warnings. --- pcbnew/exporters/export_d356.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pcbnew/exporters/export_d356.h b/pcbnew/exporters/export_d356.h index 172b0f0ac1..8e8c3a745e 100644 --- a/pcbnew/exporters/export_d356.h +++ b/pcbnew/exporters/export_d356.h @@ -58,7 +58,9 @@ public: * @param aPcb is the board to extract a netlist from * @param aParent will be used as the parent for any warning dialogs */ - IPC356D_WRITER( BOARD* aPcb ) : m_pcb( aPcb ) {} + IPC356D_WRITER( BOARD* aPcb ) : + m_pcb( aPcb ) + {} virtual ~IPC356D_WRITER() {}