From 52f3898881606b361670261250f095b0680c76de Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 5 Dec 2019 21:28:48 +0100 Subject: [PATCH] [cpplint] Omit template arguments for make_pair. --- 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 6013aa6861..ab1ebfb125 100644 --- a/src/smpi/internals/smpi_global.cpp +++ b/src/smpi/internals/smpi_global.cpp @@ -277,7 +277,7 @@ static void smpi_init_papi() counters2values.push_back( // We cannot just pass *events_it, as this is of type const basic_string - std::make_pair(std::string(*events_it), 0)); + std::make_pair(std::string(*events_it), 0LL)); } std::string unit_name = *(event_tokens.begin()); -- 2.20.1