bindings: cxx: make bitset_cmp::operator() const
authorMichael Beach <michaelb@ieee.org>
Sat, 9 Feb 2019 15:06:18 +0000 (00:06 +0900)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Sun, 10 Feb 2019 14:14:22 +0000 (15:14 +0100)
This fixes build problems with clang and libc++ and such constness is
now required by C++17 (see https://cplusplus.github.io/LWG/issue2542).

Signed-off-by: Michael Beach <michaelb@ieee.org>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/line_bulk.cpp

index c93f364b47f30b828a368d59c1d69e67e4dc731e..e52d33dc549ac5c5bba65b080913aa24a1039d53 100644 (file)
@@ -29,7 +29,7 @@ const ::std::map<int, int> reqtype_mapping = {
 
 struct bitset_cmp
 {
-       bool operator()(const ::std::bitset<32>& lhs, const ::std::bitset<32>& rhs)
+       bool operator()(const ::std::bitset<32>& lhs, const ::std::bitset<32>& rhs) const
        {
                return lhs.to_ulong() < rhs.to_ulong();
        }