-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Check this links and fixes translator
always use explicit constructor
always use explicit operator conversions
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))
{
}
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers