aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/common.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/common.hpp b/include/common.hpp
index 249b9eb..7b98ea9 100644
--- a/include/common.hpp
+++ b/include/common.hpp
@@ -59,9 +59,9 @@ typedef unsigned int uint;
#define BREAKPOINT __asm__("int $3")
template<typename T>
-inline const T * const& coalesce(const T * const &p1, const T * const &p2)
+inline const T * const& coalesce(const void * &p1, const void * &p2)
{
- return ((p1 == nullptr) ? p2 : p1);
+ return ((p1 == nullptr) ? reinterpret_cast<T*>(p2) : p1);
}
/**