diff options
author | pkerling <pkerling@casix.org> | 2019-03-21 18:17:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 18:17:41 +0000 |
commit | a1fbe7188585c7e1e2561dec5b9cd94c367f651a (patch) | |
tree | 34ab17aa9e4650c64d7551a950c3e72f80c0c43b | |
parent | 36dad43392693400f515a7b133d8dcedb4946a71 (diff) | |
parent | 7db4a56601c027d2316c7c2d56116a8bc3286fa6 (diff) |
Merge pull request #15790 from olafhering/WaylandCXX17
[wayland] fix compilation with C++17
-rw-r--r-- | xbmc/windowing/wayland/Util.h | 2 |
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(); } |