You need to sign in or sign up before continuing.
Commit 484ec91c authored by drgler's avatar drgler
Browse files

Infinite Loop when calling a mock function that takes boost::filesystem::path...

Infinite Loop when calling a mock function that takes boost::filesystem::path as parameter #521: Add is_same type trait
parent 4bab34d2
......@@ -2241,6 +2241,12 @@ template <bool bool_value> const bool bool_constant<bool_value>::value;
typedef bool_constant<false> false_type;
typedef bool_constant<true> true_type;
template <typename T, typename U>
struct is_same : public false_type {};
template <typename T>
struct is_same<T, T> : public true_type {};
template <typename T>
struct is_pointer : public false_type {};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment