From 3f3a53e6c0df9e8fd54ff1e9f049f93e2002d896 Mon Sep 17 00:00:00 2001 From: Pieter Hulshoff Date: Wed, 8 Jun 2016 10:55:42 +0200 Subject: [PATCH] Removed cause for warnings regarding incorred initialization order. --- RetroFE/Source/Graphics/Animate/Tween.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RetroFE/Source/Graphics/Animate/Tween.cpp b/RetroFE/Source/Graphics/Animate/Tween.cpp index 8b8426f..edf3340 100644 --- a/RetroFE/Source/Graphics/Animate/Tween.cpp +++ b/RetroFE/Source/Graphics/Animate/Tween.cpp @@ -25,10 +25,10 @@ std::map Tween::tweenPropertyMap_; Tween::Tween(TweenProperty property, TweenAlgorithm type, double start, double end, double duration) : property(property) , duration(duration) + , startDefined(true) , type(type) , start(start) , end(end) - , startDefined(true) { }