From 307f6b4be64f91b203b9a71eddb3afce0529c0f4 Mon Sep 17 00:00:00 2001 From: eidheim Date: Tue, 1 Dec 2015 07:43:29 +0100 Subject: [PATCH] Tiny style fix to #96 --- src/tooltips.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tooltips.h b/src/tooltips.h index c916a0a..4f21953 100644 --- a/src/tooltips.h +++ b/src/tooltips.h @@ -34,9 +34,8 @@ public: void clear() {tooltip_list.clear();}; template - void emplace_back(Ts&&... params) - { - tooltip_list.emplace_back(std::forward(params)...); + void emplace_back(Ts&&... params) { + tooltip_list.emplace_back(std::forward(params)...); } static Gdk::Rectangle drawn_tooltips_rectangle;