Removed exlict keyword to address build problems with VS older than 2015.

This commit is contained in:
Robert Osfield 2019-08-22 14:49:43 +01:00
parent 30aae63c3b
commit 415925b024

View File

@ -325,7 +325,7 @@ struct SafeArray
operator T*() { return impl; }
template<typename U>
explicit operator U() { return (U)impl; }
operator U() { return (U)impl; }
private:
T* impl;