1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-16 19:14:06 +02:00

Revert "* Try to fix breakpad."

This reverts commit 8314cdbcf5.
This commit is contained in:
Christian Muehlhaeuser
2012-11-16 09:41:26 +01:00
parent 97a65017ce
commit 9ad15fff97

View File

@@ -49,20 +49,11 @@
#include "common/memory.h"
#include "google_breakpad/common/minidump_format.h"
#if __cplusplus > 199711L
#include <type_traits>
#endif
namespace google_breakpad {
#if defined(__i386) || defined(__x86_64)
//typedef typeof(((struct user*) 0)->u_debugreg[0]) debugreg_t;
#if __cplusplus > 199711L
typedef std::remove_reference< decltype(((struct user*) 0)->u_debugreg[0]) >::type debugreg_t;
#else
typedef typeof(((struct user*) 0)->u_debugreg[0]) debugreg_t;
#endif
#endif
// Typedef for our parsing of the auxv variables in /proc/pid/auxv.
#if defined(__i386) || defined(__ARM_EABI__)