From 74154653779f9c914ca6759c9e7230d4c052315f Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Tue, 5 Dec 2017 17:29:46 +0100 Subject: [PATCH] [SMPI] process_data is now declared static It's not used in any other file any more and functions should be used (if at all) to access it. --- src/smpi/internals/smpi_global.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/internals/smpi_global.cpp b/src/smpi/internals/smpi_global.cpp index 351269c3b2..0407a77a54 100644 --- a/src/smpi/internals/smpi_global.cpp +++ b/src/smpi/internals/smpi_global.cpp @@ -52,7 +52,7 @@ struct papi_process_data { #endif std::unordered_map location2speedup; -simgrid::smpi::Process **process_data = nullptr; +static simgrid::smpi::Process** process_data = nullptr; int process_count = 0; int smpi_universe_size = 0; int* index_to_process_data = nullptr; -- 2.20.1