Skip to content

Commit 92d2af6

Browse files
authored
Merge pull request #81 from yorickdewid/patch-1
Remove explicit cast on void pointer operator
2 parents 0db7521 + bd288a5 commit 92d2af6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zmq.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,12 +495,12 @@ namespace zmq
495495
close();
496496
}
497497

498-
inline ZMQ_EXPLICIT operator void* () ZMQ_NOTHROW
498+
inline operator void* () ZMQ_NOTHROW
499499
{
500500
return ptr;
501501
}
502502

503-
inline ZMQ_EXPLICIT operator void const* () const ZMQ_NOTHROW
503+
inline operator void const* () const ZMQ_NOTHROW
504504
{
505505
return ptr;
506506
}

0 commit comments

Comments
 (0)