slint/helper_crates/vtable
Olivier Goffart 63785fd262
vtable: fix for warning with the nightly rust compiler
```
warning: non-local `macro_rules!` definition, `#[macro_export]` macro should be written at top level module
   --> helper_crates/vtable/tests/test_vtable.rs:159:5
    |
159 |     #[vtable]
    |     ^^^^^^^^^ in this procedural macro expansion
    |
    = help: remove the `#[macro_export]` or move this `macro_rules!` outside the of the current function `test3`
```

Put the macro in the module with everything else, so it is re-exported
with the same visibility
2024-09-26 09:35:12 +02:00
..
LICENSES xtask: Fix license symlinks after the latest license header changes 2023-08-17 08:55:28 +02:00
macro vtable: fix for warning with the nightly rust compiler 2024-09-26 09:35:12 +02:00
src janitor: Fix clippy "doc list item missing indentation" 2024-06-24 14:59:47 +02:00
tests xtask: Fix up license headers 2023-08-17 08:55:28 +02:00
Cargo.toml vtable: increase version number to account for breaking change in vtable::Dyn 2024-02-26 14:45:47 +01:00
CHANGELOG.md Prepare for release of helper crates 2024-03-14 08:52:09 +01:00
README.md xtask: Fix up license headers 2023-08-17 08:55:28 +02:00

vtable crate

Crates.io Docs.rs

A macro to create ffi-friendly virtual tables.

Check the crate documentation for more details.