Skip to content

Commit 8298ebc

Browse files
committed
Fix compiler warning -Wdelete-non-virtual-dtor.
1 parent 2559132 commit 8298ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ESP_SSLClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ESP_SSLClient
4444
{
4545
public:
4646
ESP_SSLClient(){};
47-
~ESP_SSLClient(){};
47+
virtual ~ESP_SSLClient(){};
4848
};
4949

5050
#endif

0 commit comments

Comments
 (0)