diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 15:40:08 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 15:54:49 -0700 |
commit | fd22e8123b18e52610e36b21f29f3a80850d8dee (patch) | |
tree | e780a68612939ab2c05e20056dd530664723f0b1 /subsurfacesysinfo.h | |
parent | 5149bc0df8b8f2b813911f360eca994e323b1138 (diff) | |
download | subsurface-fd22e8123b18e52610e36b21f29f3a80850d8dee.tar.gz |
User survey: detect the machine the app is running on
We build 32bit Windows binaries - but we really want to know if the OS is
x86_64 or i386. This little hack should give us that information.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurfacesysinfo.h')
-rw-r--r-- | subsurfacesysinfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/subsurfacesysinfo.h b/subsurfacesysinfo.h index 2cd8abace..877f7ef00 100644 --- a/subsurfacesysinfo.h +++ b/subsurfacesysinfo.h @@ -212,7 +212,9 @@ public: static QString osKernelVersion(); static QString osVersion(); static QString prettyOsName(); + #endif + static QString osArch(); }; |