Skip to content

Commit bbfc726

Browse files
committed
s
1 parent a7100e2 commit bbfc726

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

simplecpp.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ namespace simplecpp {
8181
class constness_ptr
8282
{
8383
public:
84-
explicit constness_ptr(T* p)
84+
#ifndef _MSC_VER
85+
explicit
86+
#endif
87+
constness_ptr(T* p)
8588
: mPtr(p)
8689
{}
8790

0 commit comments

Comments
 (0)