Skip to content

Commit

Permalink
[JsonGen] Use @encode:bitmask (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaszm authored Sep 30, 2024
1 parent bc06142 commit 2db314b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProxyStubGenerator/CppParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1746,7 +1746,7 @@ def _find(word, string):
tagtokens.append("@COMPLIANT")
if _find("@iterator", token):
tagtokens.append("@ITERATOR")
if _find("@bitmask", token):
if _find("@encode:bitmask", token) or _find("@bitmask", token):
tagtokens.append("@BITMASK")
if _find("@end", token):
tagtokens.append("@END")
Expand Down

0 comments on commit 2db314b

Please sign in to comment.