diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-16 11:23:06 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-16 11:23:06 +0100 |
commit | 3fabee84281da18ad1ce7df2f9099c7ec6678614 (patch) | |
tree | e33028b52b3a3309d9dec02a5b3fc1821ea212d8 /tracker-steamvr/steamvr.hpp | |
parent | 4a5b7ff7ec97f9078780ffc44d923d11a0aa18c1 (diff) |
tracker/steamvr: fix signedness
Diffstat (limited to 'tracker-steamvr/steamvr.hpp')
-rw-r--r-- | tracker-steamvr/steamvr.hpp | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/tracker-steamvr/steamvr.hpp b/tracker-steamvr/steamvr.hpp index 88fa740a..c6f31fa9 100644 --- a/tracker-steamvr/steamvr.hpp +++ b/tracker-steamvr/steamvr.hpp @@ -1,25 +1,19 @@ #pragma once -#include "api/plugin-api.hpp" + #include "ui_dialog.h" +#include "api/plugin-api.hpp" #include "options/options.hpp" -#include "compat/euler.hpp" - -#include <openvr.h> - -#include <cmath> -#include <memory> #include <tuple> +#include <climits> #include <QString> #include <QMutex> -#include <QMutexLocker> #include <QList> -using namespace options; +#include <openvr.h> -using rmat = euler::rmat; -using euler_t = euler::euler_t; +using namespace options; using vr_error_t = vr::EVRInitError; using vr_t = vr::IVRSystem*; |