Commit b342e120 authored by dariomt's avatar dariomt

Detect correctly pointer-to-const

The intention of the current code is to detect a pointer-to-const but instead it is detecting a const-pointer. See #134
parent 57de1d60
...@@ -2385,7 +2385,7 @@ class basic_json ...@@ -2385,7 +2385,7 @@ class basic_json
template<typename PointerType, typename template<typename PointerType, typename
std::enable_if< std::enable_if<
std::is_pointer<PointerType>::value std::is_pointer<PointerType>::value
and std::is_const<PointerType>::value and std::is_const< typename std::remove_pointer<PointerType>::type >::value
, int>::type = 0> , int>::type = 0>
const PointerType get_ptr() const noexcept const PointerType get_ptr() const noexcept
{ {
......
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