From 20ca240e5d009fba41cdacc9f241fa1c21d74a24 Mon Sep 17 00:00:00 2001 From: Oksana Shadura <oksana.shadura@cern.ch> Date: Tue, 4 Sep 2018 11:03:51 +0200 Subject: [PATCH] Remove warnings diccovered by -Wunused-private-field Fix in LLVM trunk: https://reviews.llvm.org/rL317091 --- interpreter/llvm/src/include/llvm/CodeGen/PBQP/Solution.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/interpreter/llvm/src/include/llvm/CodeGen/PBQP/Solution.h b/interpreter/llvm/src/include/llvm/CodeGen/PBQP/Solution.h index 8d5d2374679..6a247277fdf 100644 --- a/interpreter/llvm/src/include/llvm/CodeGen/PBQP/Solution.h +++ b/interpreter/llvm/src/include/llvm/CodeGen/PBQP/Solution.h @@ -29,11 +29,6 @@ namespace PBQP { using SelectionsMap = std::map<GraphBase::NodeId, unsigned>; SelectionsMap selections; - unsigned r0Reductions = 0; - unsigned r1Reductions = 0; - unsigned r2Reductions = 0; - unsigned rNReductions = 0; - public: /// \brief Initialise an empty solution. Solution() = default; -- GitLab