aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpkerling <pkerling@casix.org>2019-03-21 18:17:41 +0000
committerGitHub <noreply@github.com>2019-03-21 18:17:41 +0000
commita1fbe7188585c7e1e2561dec5b9cd94c367f651a (patch)
tree34ab17aa9e4650c64d7551a950c3e72f80c0c43b
parent36dad43392693400f515a7b133d8dcedb4946a71 (diff)
parent7db4a56601c027d2316c7c2d56116a8bc3286fa6 (diff)
Merge pull request #15790 from olafhering/WaylandCXX17
[wayland] fix compilation with C++17
-rw-r--r--xbmc/windowing/wayland/Util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/windowing/wayland/Util.h b/xbmc/windowing/wayland/Util.h
index 43c1642c54..8e1d313703 100644
--- a/xbmc/windowing/wayland/Util.h
+++ b/xbmc/windowing/wayland/Util.h
@@ -22,7 +22,7 @@ namespace WAYLAND
struct WaylandCPtrCompare
{
- bool operator()(wayland::proxy_t const& p1, wayland::proxy_t const& p2)
+ bool operator()(wayland::proxy_t const& p1, wayland::proxy_t const& p2) const
{
return p1.c_ptr() < p2.c_ptr();
}