From f85bff98ca3c8f6cbb719ddaa21cc2018387f8eb Mon Sep 17 00:00:00 2001 From: Benoit Girard Date: Thu, 14 Mar 2013 18:10:18 -0400 Subject: [PATCH] Bug 850833 - Fix unused function warning. r=bustage CLOSED TREE --- tools/profiler/TableTicker2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/profiler/TableTicker2.cpp b/tools/profiler/TableTicker2.cpp index 23f68a42796..80177dcd281 100644 --- a/tools/profiler/TableTicker2.cpp +++ b/tools/profiler/TableTicker2.cpp @@ -677,7 +677,7 @@ std::ostream& operator<<(std::ostream& stream, const ProfileEntry2& entry) return stream; } -static const char* name_UnwMode(UnwMode m) +static inline const char* name_UnwMode(UnwMode m) { switch (m) { case UnwINVALID: return "invalid";