rename: ctor -> constructor, dtor -> destructor, parameter -> argument

This commit is contained in:
BlackMATov
2022-02-08 23:36:20 +07:00
parent 8e18c85823
commit 04fd737d62
38 changed files with 795 additions and 795 deletions

View File

@@ -47,7 +47,7 @@ TEST_CASE("meta/meta_examples/classes/type") {
// 'rectangle' class type registration
meta::class_<rectangle>()
.base_<shape>()
.ctor_<int, int>()
.constructor_<int, int>()
.method_("get_width", &rectangle::get_width)
.method_("get_height", &rectangle::get_height);