From 15ba7c4a8be21a8b486956bc7899ea6fb8d7e00e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Thu, 7 Jun 2018 10:16:02 +0200 Subject: [PATCH] [apps/reg] Remove unneeded volatile qualifiers --- apps/regression/graph_controller.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/regression/graph_controller.cpp b/apps/regression/graph_controller.cpp index 30ba3c825..e7ce69f0b 100644 --- a/apps/regression/graph_controller.cpp +++ b/apps/regression/graph_controller.cpp @@ -238,9 +238,9 @@ bool GraphController::moveCursorHorizontally(int direction) { } bool GraphController::moveCursorVertically(int direction) { - volatile int closestRegressionSeries = -1; + int closestRegressionSeries = -1; int closestDotSeries = -1; - volatile int dotSelected = -1; + int dotSelected = -1; if (*m_selectedDotIndex == -1) { // The current cursor is on a regression