summaryrefslogtreecommitdiffstats
path: root/src/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Globals.h')
-rw-r--r--src/Globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Globals.h b/src/Globals.h
index 804b0a5ac..0ab78121c 100644
--- a/src/Globals.h
+++ b/src/Globals.h
@@ -482,7 +482,7 @@ namespace std
template <typename WeakPtrType>
struct equal_to<std::weak_ptr<WeakPtrType>>
{
- constexpr bool operator()(const std::weak_ptr<WeakPtrType> & a_Lhs, const std::weak_ptr<WeakPtrType> & a_Rhs) const
+ /* constexpr */ bool operator()(const std::weak_ptr<WeakPtrType> & a_Lhs, const std::weak_ptr<WeakPtrType> & a_Rhs) const
{
return (!a_Lhs.owner_before(a_Rhs) && !a_Rhs.owner_before(a_Lhs));
}