From 3400cfe23a878c24ee0eb5b744b4b8c7a9955b38 Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Mon, 23 Jul 2018 18:51:25 +0200
Subject: [PATCH] Remove debugging label

---
 src/scheme/AcousticSolver.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/scheme/AcousticSolver.hpp b/src/scheme/AcousticSolver.hpp
index 6f1b9256a..b00571b59 100644
--- a/src/scheme/AcousticSolver.hpp
+++ b/src/scheme/AcousticSolver.hpp
@@ -86,7 +86,7 @@ class AcousticSolver
                   const NodeValuePerCell<double>& ljr,
                   const NodeValuePerCell<Rd>& njr)
   {
-    Kokkos::parallel_for("new nested Ajr", m_mesh.numberOfCells(), KOKKOS_LAMBDA(const int& j) {
+    Kokkos::parallel_for(m_mesh.numberOfCells(), KOKKOS_LAMBDA(const int& j) {
         const size_t& nb_nodes =m_Ajr.numberOfSubValues(j);
         const double& rho_c = rhocj(j);
         for (size_t r=0; r<nb_nodes; ++r) {
-- 
GitLab