提交 72476b42 编写于 作者: N Niels

cleanup after #153

上级 f36f316f
......@@ -381,6 +381,7 @@ I deeply appreciate the help of the following people.
- [Silverweed](https://github.com/silverweed) overloaded `parse()` to accept an rvalue reference.
- [dariomt](https://github.com/dariomt) fixed a subtlety in MSVC type support.
- [ZahlGraf](https://github.com/ZahlGraf) added a workaround that allows compilation using Android NDK.
- [Eau Claire](https://github.com/whackashoe) replaced a function that was marked as unsafe by Visual Studio.
Thanks a lot for helping out!
......
......@@ -2404,7 +2404,7 @@ class basic_json
template<typename PointerType, typename
std::enable_if<
std::is_pointer<PointerType>::value
and std::is_const< typename std::remove_pointer<PointerType>::type >::value
and std::is_const<typename std::remove_pointer<PointerType>::type>::value
, int>::type = 0>
const PointerType get_ptr() const noexcept
{
......
......@@ -2404,7 +2404,7 @@ class basic_json
template<typename PointerType, typename
std::enable_if<
std::is_pointer<PointerType>::value
and std::is_const< typename std::remove_pointer<PointerType>::type >::value
and std::is_const<typename std::remove_pointer<PointerType>::type>::value
, int>::type = 0>
const PointerType get_ptr() const noexcept
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册