Removed cause for warnings regarding incorred initialization order.

This commit is contained in:
Pieter Hulshoff 2016-06-08 10:55:42 +02:00
parent 2c0d20f3bf
commit 3f3a53e6c0

View File

@ -25,10 +25,10 @@ std::map<std::string, TweenProperty> Tween::tweenPropertyMap_;
Tween::Tween(TweenProperty property, TweenAlgorithm type, double start, double end, double duration) Tween::Tween(TweenProperty property, TweenAlgorithm type, double start, double end, double duration)
: property(property) : property(property)
, duration(duration) , duration(duration)
, startDefined(true)
, type(type) , type(type)
, start(start) , start(start)
, end(end) , end(end)
, startDefined(true)
{ {
} }