From e71e984af918104579da59e45785fe1651c5e992 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Wed, 23 Jan 2019 02:58:28 +0100 Subject: =?UTF-8?q?Avoid=20the=20=E2=80=9Cusing=20std::*;=E2=80=9D=20or=20?= =?UTF-8?q?=E2=80=9Cusing=20namespace=20std;=E2=80=9D=20constructs.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes the code a lot less readable and greppable for no reason. --- src/sp-item-notify-moveto.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/sp-item-notify-moveto.cpp') diff --git a/src/sp-item-notify-moveto.cpp b/src/sp-item-notify-moveto.cpp index 1da630004..57e44f45a 100644 --- a/src/sp-item-notify-moveto.cpp +++ b/src/sp-item-notify-moveto.cpp @@ -12,6 +12,7 @@ */ #include <2geom/transforms.h> +#include #include "sp-item-notify-moveto.h" @@ -19,8 +20,6 @@ #include "object/sp-item.h" #include "object/sp-item-rm-unsatisfied-cns.h" -using std::vector; - #define return_if_fail(test) if (!(test)) { printf("WARNING: assertion '%s' failed", #test); return; } /** -- cgit v1.2.3