From a669ce6966acc8a30e21f73b8fb2c2671cf2e787 Mon Sep 17 00:00:00 2001 From: Iouri Kharon Date: Tue, 29 Jun 2021 15:24:29 +0300 Subject: [PATCH] plugins: can build some plugins with 'old' compilers (supported c++11, but not supported c++17) --- plugins/common/unicode/PluginSettings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/common/unicode/PluginSettings.hpp b/plugins/common/unicode/PluginSettings.hpp index 3ee5c8ab76..c1e03178b0 100644 --- a/plugins/common/unicode/PluginSettings.hpp +++ b/plugins/common/unicode/PluginSettings.hpp @@ -22,7 +22,7 @@ class PluginSettings ~PluginSettings() { - SettingsControl(handle,SCTL_FREE,0,{}); + SettingsControl(handle,SCTL_FREE,0,nullptr); } int CreateSubKey(size_t Root, const wchar_t *Name)