From 24b56457acef014c257cd683b960c6bd9e45416c Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 7 Jan 2016 16:52:43 +0100 Subject: [PATCH] CMake: Make helper function static Change-Id: If4b0ebd2a40f2250533a717a1b57b0eb7d13ae9a Reviewed-by: Tim Jenssen --- src/plugins/projectexplorer/kitmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/kitmanager.cpp b/src/plugins/projectexplorer/kitmanager.cpp index 948295a2fe2..666e0169fd9 100644 --- a/src/plugins/projectexplorer/kitmanager.cpp +++ b/src/plugins/projectexplorer/kitmanager.cpp @@ -268,7 +268,7 @@ static bool isLoaded() return d->m_initialized; } -bool greaterPriority(KitInformation *a, KitInformation *b) +static bool greaterPriority(KitInformation *a, KitInformation *b) { return a->priority() > b->priority(); }