We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14cb7ed commit 9db3378Copy full SHA for 9db3378
gmock.py
@@ -135,8 +135,8 @@ def __is_virtual_function(self, tokens):
135
def __is_pure_virtual_function(self, tokens):
136
return len(tokens) >= 3 and \
137
self.__is_virtual_function(tokens) and \
138
- tokens[-3] == '=' and \
139
- tokens[-2] == '0' and \
+ tokens[-3] == '=' and \
+ tokens[-2] == '0' and \
140
tokens[-1] == ';'
141
142
def __get_result_type(self, tokens, name):
0 commit comments