From 27df960a52219780e47809ec11ca44d11e9163fc Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 27 Nov 2017 09:42:32 +0000 Subject: [PATCH] Fix for VS2015 --- modules/juce_core/containers/juce_SparseSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/containers/juce_SparseSet.h b/modules/juce_core/containers/juce_SparseSet.h index 3903db0ed2..a206fa377d 100644 --- a/modules/juce_core/containers/juce_SparseSet.h +++ b/modules/juce_core/containers/juce_SparseSet.h @@ -39,7 +39,7 @@ class SparseSet { public: //============================================================================== - SparseSet() noexcept = default; + SparseSet() noexcept {} SparseSet (const SparseSet&) = default; SparseSet& operator= (const SparseSet&) = default;