From 97f4e0fb7f33d19c7f22e48e4c99a562f8c91156 Mon Sep 17 00:00:00 2001 From: Jonas Zeunert Date: Tue, 30 Apr 2019 12:38:30 +0200 Subject: [PATCH] fixed another cerror --- .idea/workspace.xml | 52 +++++++++---------- .../output/OutputRequestHandler.cpp | 4 +- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8dac9df..c70ebf4 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -12,7 +12,7 @@ - + @@ -387,12 +387,12 @@ - + - @@ -1225,38 +1225,38 @@ + + + + + + + + + + - - + + - - - - - + + - - - - - - - \ No newline at end of file diff --git a/FlippR-Driver/src/utility/networking/output/OutputRequestHandler.cpp b/FlippR-Driver/src/utility/networking/output/OutputRequestHandler.cpp index b555e8b..d4ba1df 100644 --- a/FlippR-Driver/src/utility/networking/output/OutputRequestHandler.cpp +++ b/FlippR-Driver/src/utility/networking/output/OutputRequestHandler.cpp @@ -163,8 +163,8 @@ void OutputRequestHandler::parseDisplay(const std::string& item_name, const std: try { //TODO not compiling -// unsigned int score = std::stoi(score); -// display->write_score(score); + unsigned int numerical_score = std::stoi(score); + display->write_score(numerical_score); } catch(std::invalid_argument &e) {