From 03a972ec555cf01d9604254357e0a5274a81e371 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Thu, 3 Dec 2015 13:52:35 +0100 Subject: [PATCH] Use C++11 auto instead of per-platform types. Closes #2686. --- src/OSSupport/StackTrace.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/OSSupport/StackTrace.cpp b/src/OSSupport/StackTrace.cpp index d0e088f4e..3534bc03d 100644 --- a/src/OSSupport/StackTrace.cpp +++ b/src/OSSupport/StackTrace.cpp @@ -14,13 +14,6 @@ #include #endif -// FreeBSD uses size_t for the return type of backtrace() -#if defined(__FreeBSD__) && (__FreeBSD__ >= 10) - #define btsize size_t -#else - #define btsize int -#endif - @@ -44,7 +37,7 @@ void PrintStackTrace(void) // Use the backtrace() function to get and output the stackTrace: // Code adapted from http://stackoverflow.com/questions/77005/how-to-generate-a-stacktrace-when-my-gcc-c-app-crashes void * stackTrace[30]; - btsize numItems = backtrace(stackTrace, ARRAYCOUNT(stackTrace)); + auto numItems = backtrace(stackTrace, ARRAYCOUNT(stackTrace)); backtrace_symbols_fd(stackTrace, numItems, STDERR_FILENO); #endif #endif