From 607f78668772190d796f4c71957946ad54d0f24f Mon Sep 17 00:00:00 2001 From: Chris Galvan Date: Thu, 22 Apr 2021 15:00:50 -0500 Subject: [PATCH] [LYN-3160] Fixed virtual destructor compile issue on linux. --- Code/Sandbox/Editor/IEditorImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Sandbox/Editor/IEditorImpl.h b/Code/Sandbox/Editor/IEditorImpl.h index db391b7678..a99fa234b9 100644 --- a/Code/Sandbox/Editor/IEditorImpl.h +++ b/Code/Sandbox/Editor/IEditorImpl.h @@ -90,7 +90,7 @@ class CEditorImpl public: CEditorImpl(); - ~CEditorImpl(); + virtual ~CEditorImpl(); void Initialize(); void OnBeginShutdownSequence();