]> granicus.if.org Git - re2c/commitdiff
Add const to newver_t operator()
authorRyan Mast <ryan@ahitb.com>
Sat, 1 Jul 2017 23:08:17 +0000 (16:08 -0700)
committerUlya Trofimovich <skvadrik@gmail.com>
Sun, 2 Jul 2017 08:30:12 +0000 (09:30 +0100)
A certain set of compilers gives a compiler error due to losing
"const-volatile qualifiers"

re2c/src/dfa/closure.h

index f93e29d5b56d499661607e8fa2344c12a5d2db97..cd8e127832d81774f2d775f43b4a6045d8d4901d 100644 (file)
@@ -38,7 +38,7 @@ struct newver_t
 struct newver_cmp_t
 {
        tagtree_t &history;
-       bool operator()(const newver_t &x, const newver_t &y)
+       bool operator()(const newver_t &x, const newver_t &y) const
        {
                if (x.tag < y.tag) return true;
                if (x.tag > y.tag) return false;