[set] Mark a couple methods as constexpr
diff --git a/src/hb-set.hh b/src/hb-set.hh
index 073ba95..be036b3 100644
--- a/src/hb-set.hh
+++ b/src/hb-set.hh
@@ -57,7 +57,7 @@
     void init0 () { v.clear (); }
     void init1 () { v.clear (0xFF); }
 
-    unsigned int len () const
+    constexpr unsigned len () const
     { return ARRAY_LENGTH_CONST (v); }
 
     bool is_empty () const
@@ -70,7 +70,7 @@
 
     void add (hb_codepoint_t g) { elt (g) |= mask (g); }
     void del (hb_codepoint_t g) { elt (g) &= ~mask (g); }
-    bool get (hb_codepoint_t g) const { return elt (g) & mask (g); }
+    constexpr bool get (hb_codepoint_t g) const { return elt (g) & mask (g); }
 
     void add_range (hb_codepoint_t a, hb_codepoint_t b)
     {