Fix warning: uninitialized constant in sim_plot_panel.h

This commit is contained in:
Chris Pavlina 2017-03-19 09:13:44 -04:00
parent 98e3bfb95a
commit bfa22c6ce8
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 CERN
* Copyright (C) 2016-2017 KiCad Developers, see AUTHORS.txt for contributors.
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
* @author Maciej Suminski <maciej.suminski@cern.ch>
*
@ -79,7 +80,7 @@ private:
wxRealPoint m_coords;
mpWindow* m_window;
const int DRAG_MARGIN = 10;
static constexpr int DRAG_MARGIN = 10;
};