templatized ArgStack as a prep to store blends
diff --git a/src/hb-subset-cff-common.hh b/src/hb-subset-cff-common.hh
index 56d7a57..f06123b 100644
--- a/src/hb-subset-cff-common.hh
+++ b/src/hb-subset-cff-common.hh
@@ -219,7 +219,7 @@
   {
     TRACE_SERIALIZE (this);
 
-    if (drop_hints && DictOpSet::is_hint_op (opstr.op))
+    if (drop_hints && DictOpSet<>::is_hint_op (opstr.op))
       return true;
     if (opstr.op == OpCode_Subrs)
     {
@@ -234,7 +234,7 @@
 
   inline unsigned int calculate_serialized_size (const OpStr &opstr) const
   {
-    if (drop_hints && DictOpSet::is_hint_op (opstr.op))
+    if (drop_hints && DictOpSet<>::is_hint_op (opstr.op))
       return 0;
     if (opstr.op == OpCode_Subrs)
     {