Common: Fix IsTriviallyCopyable macro for GCC 5

Based on quarthex's patch in PR #2440
This commit is contained in:
degasus 2015-05-26 19:43:50 +02:00
parent 8944e07f84
commit ebad10f2a1
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#include "Common/Flag.h"
// ewww
#if _LIBCPP_VERSION
#if _LIBCPP_VERSION || __GNUC__ >= 5
#define IsTriviallyCopyable(T) std::is_trivially_copyable<typename std::remove_volatile<T>::type>::value
#elif __GNUC__
#define IsTriviallyCopyable(T) std::has_trivial_copy_constructor<T>::value