From c20c1d6a6b3eb301db88ca3e74993f445cc4d839 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Fri, 17 Jun 2016 13:07:27 +0300 Subject: [core] Avoid redundant 'inline' usage --- include/mbgl/map/camera.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/mbgl/map') diff --git a/include/mbgl/map/camera.hpp b/include/mbgl/map/camera.hpp index 4520321655..3f39ca2dc9 100644 --- a/include/mbgl/map/camera.hpp +++ b/include/mbgl/map/camera.hpp @@ -67,10 +67,10 @@ struct AnimationOptions { std::function transitionFinishFn; /** Creates an animation with no options specified. */ - inline AnimationOptions() {} + AnimationOptions() {} /** Creates an animation with the specified duration. */ - inline AnimationOptions(Duration d) + AnimationOptions(Duration d) : duration(d) {} }; -- cgit v1.2.1