0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-05 23:28:53 +02:00

ircd::util: Strengthen the strong typedef.

This commit is contained in:
Jason Volk 2016-11-06 15:59:37 -08:00
parent 84383d41d8
commit 25a2dd906c

View file

@ -54,8 +54,8 @@ struct NAME \
{ \
TYPE val; \
\
operator const TYPE &() const { return val; } \
operator TYPE &() { return val; } \
explicit operator const TYPE &() const { return val; } \
explicit operator TYPE &() { return val; } \
};
#define IRCD_WEAK_T(TYPE) \