This commit is contained in:
blueloveTH 2023-07-26 21:46:15 +08:00
parent 67c0c68463
commit 89f18c1b2a

View File

@ -108,4 +108,10 @@ struct Point {
}));
}
};
```
```
### Old style binding
You may see somewhere in the code that `vm->bind_method<>` or `vm->bind_func<>` is used.
They are old style binding functions and are deprecated.
You should use `vm->bind` instead.