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: https://github.com/iojs/io.js/pull/1638
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
This commit is contained in:
thefourtheye 2015-05-06 20:06:30 +05:30 committed by Jeremiah Senkpiel
parent b16d9c28e8
commit 0c8f13df8f

View File

@ -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'