Fix compilation with MSVC

BUG=webm:1499

Change-Id: I8e63496a287b6303c287fd2254d4267c79f32f13
diff --git a/webm_parser/src/master_value_parser.h b/webm_parser/src/master_value_parser.h
index 841d624..1a1d8d9 100644
--- a/webm_parser/src/master_value_parser.h
+++ b/webm_parser/src/master_value_parser.h
@@ -478,7 +478,7 @@
 
     template <typename Tag>
     constexpr static bool has_tag() {
-      return HasTag<Tag, Tags...>::value;
+      return MasterValueParser::HasTag<Tag, Tags...>::value;
     }
   };