remove some unrelated whitespace changes

This commit is contained in:
Brad Hefta-Gaub 2016-02-12 16:09:51 -08:00
parent 1160ecb335
commit 1c2096bc30

View file

@ -13,10 +13,11 @@
#ifndef hifi_AbstractControllerScriptingInterface_h #ifndef hifi_AbstractControllerScriptingInterface_h
#define hifi_AbstractControllerScriptingInterface_h #define hifi_AbstractControllerScriptingInterface_h
#include <unordered_map> #include <atomic>
#include <unordered_set>
#include <map> #include <map>
#include <set> #include <set>
#include <unordered_map>
#include <unordered_set>
#include <glm/glm.hpp> #include <glm/glm.hpp>
#include <glm/gtc/quaternion.hpp> #include <glm/gtc/quaternion.hpp>
@ -165,12 +166,12 @@ namespace controller {
QVariantMap _actions; QVariantMap _actions;
QVariantMap _standard; QVariantMap _standard;
bool _mouseCaptured { false }; bool _mouseCaptured{ false };
bool _touchCaptured { false }; bool _touchCaptured{ false };
bool _wheelCaptured { false }; bool _wheelCaptured{ false };
bool _actionsCaptured { false }; bool _actionsCaptured{ false };
bool _reticleVisible { true };
bool _reticleVisible{ true };
float _reticleDepth { 1.0f }; float _reticleDepth { 1.0f };
}; };