From 5602674bc1726fcac8d1e7187dfc19b7fe0581fe Mon Sep 17 00:00:00 2001 From: Chris Foster Date: Mon, 16 Jun 2014 00:50:11 +1000 Subject: [PATCH] Remove obsolete TINYFORMAT_NOINLINE The formatter list changes remove the need for this. --- tinyformat.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tinyformat.h b/tinyformat.h index d367cfe..b9a3de2 100644 --- a/tinyformat.h +++ b/tinyformat.h @@ -132,14 +132,6 @@ namespace tfm = tinyformat; # endif #endif -#ifdef __GNUC__ -# define TINYFORMAT_NOINLINE __attribute__((noinline)) -#elif defined(_MSC_VER) -# define TINYFORMAT_NOINLINE __declspec(noinline) -#else -# define TINYFORMAT_NOINLINE -#endif - #if defined(__GLIBCXX__) && __GLIBCXX__ < 20080201 // std::showpos is broken on old libstdc++ as provided with OSX. See // http://gcc.gnu.org/ml/libstdc++/2007-11/msg00075.html