You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bonus:
use next structure to translate constructors
public: constructor(integral_type a, non_integral_type b) noexcept ( /* if body is empty */ )
: a(a), b(std::move(b)) // or _a(a), _b(std::move(b))
{
}
The text was updated successfully, but these errors were encountered:
Check this links and fixes translator
always use explicit constructor
always use explicit operator conversions
bonus:
use next structure to translate constructors
The text was updated successfully, but these errors were encountered: