From c9936e2a475309d3c4b68fe17671198d0982d704 Mon Sep 17 00:00:00 2001 From: Chris Pavlina Date: Fri, 17 Mar 2017 22:16:32 -0400 Subject: [PATCH] Fix warning about shadowing std::ignore --- pcbnew/legacy_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/legacy_plugin.cpp b/pcbnew/legacy_plugin.cpp index 33e1741365..545489218d 100644 --- a/pcbnew/legacy_plugin.cpp +++ b/pcbnew/legacy_plugin.cpp @@ -4,7 +4,7 @@ * * Copyright (C) 2007-2012 SoftPLC Corporation, Dick Hollenbeck * Copyright (C) 2004 Jean-Pierre Charras, jp.charras@wanadoo.fr - * Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -237,7 +237,7 @@ static inline char* ReadLine( LINE_READER* rdr, const char* caller ) -using namespace std; // unique_ptr +using std::unique_ptr; static EDA_TEXT_HJUSTIFY_T horizJustify( const char* horizontal )