Skip to content

Commit 0c8f13d

Browse files
thefourtheyeFishrock123
authored andcommitted
tools: remove unused GuessWordSize function
Apart from the fact that the implementation is not reliable, GuessWordSize is not used anywhere in the codebase. PR-URL: #1638 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent b16d9c2 commit 0c8f13d

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tools/utils.py

-7
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,5 @@ def GuessArchitecture():
8989
return None
9090

9191

92-
def GuessWordsize():
93-
if '64' in platform.machine():
94-
return '64'
95-
else:
96-
return '32'
97-
98-
9992
def IsWindows():
10093
return GuessOS() == 'win32'

0 commit comments

Comments
 (0)