From c66e42d8c9a605c63b28ee2c7662127db745651a Mon Sep 17 00:00:00 2001 From: thefourtheye Date: Wed, 6 May 2015 20:06:30 +0530 Subject: [PATCH] utils: Removing unused GuessWordSize function Apart from the fact that the implementation is not reliable, GuessWordSize is not used anywhere in the codebase. So, removing it. --- tools/utils.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/utils.py b/tools/utils.py index 03c56aefb85b59..fa1548501650f7 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -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'