Skip to content

Commit

Permalink
tools: remove unused GuessWordSize function
Browse files Browse the repository at this point in the history
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 <me@silverwind.io>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
  • Loading branch information
thefourtheye authored and Fishrock123 committed May 6, 2015
1 parent b16d9c2 commit 0c8f13d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,5 @@ def GuessArchitecture():
return None


def GuessWordsize():
if '64' in platform.machine():
return '64'
else:
return '32'


def IsWindows():
return GuessOS() == 'win32'

0 comments on commit 0c8f13d

Please sign in to comment.