summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/utils.py b/tools/utils.py
index 03c56aefb8..fa15485016 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'