Skip to content

Commit 9db3378

Browse files
committed
style: spaces
1 parent 14cb7ed commit 9db3378

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gmock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ def __is_virtual_function(self, tokens):
135135
def __is_pure_virtual_function(self, tokens):
136136
return len(tokens) >= 3 and \
137137
self.__is_virtual_function(tokens) and \
138-
tokens[-3] == '=' and \
139-
tokens[-2] == '0' and \
138+
tokens[-3] == '=' and \
139+
tokens[-2] == '0' and \
140140
tokens[-1] == ';'
141141

142142
def __get_result_type(self, tokens, name):

0 commit comments

Comments
 (0)