From 325495d45db259dc63508dbdb4da39b3337edbfd Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Fri, 4 Dec 2020 12:37:24 -0700 Subject: [PATCH] #728: Fix ubiquitous warning about silly const return from Intel 19 --- tests/unit/test_parallel_harness.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_parallel_harness.h b/tests/unit/test_parallel_harness.h index 7b6dfe9b2f..d496b38c20 100644 --- a/tests/unit/test_parallel_harness.h +++ b/tests/unit/test_parallel_harness.h @@ -77,7 +77,7 @@ struct MPISingletonMultiTest { } public: - const MPI_Comm getComm() { return comm_; } + MPI_Comm getComm() { return comm_; } private: MPI_Comm comm_;