From 7c04a25095f50892b452e74a6bbb96f74d4c745f Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Tue, 2 Sep 2014 16:29:20 -0700 Subject: [PATCH] fix whitespace formatting of curly braces --- libraries/shared/src/AACubeShape.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/shared/src/AACubeShape.h b/libraries/shared/src/AACubeShape.h index 7bf35d7933..96010926c7 100644 --- a/libraries/shared/src/AACubeShape.h +++ b/libraries/shared/src/AACubeShape.h @@ -16,11 +16,11 @@ class AACubeShape : public Shape { public: - AACubeShape() : Shape(AACUBE_SHAPE), _scale(1.0f) {} + AACubeShape() : Shape(AACUBE_SHAPE), _scale(1.0f) { } AACubeShape(float scale) : Shape(AACUBE_SHAPE), _scale(scale) { } AACubeShape(float scale, const glm::vec3& position) : Shape(AACUBE_SHAPE, position), _scale(scale) { } - virtual ~AACubeShape() {} + virtual ~AACubeShape() { } float getScale() const { return _scale; } void setScale(float scale) { _scale = scale; }