\brief Creates an engine with default compilation settings.
| 27 | |
| 28 | /// \brief Creates an engine with default compilation settings. |
| 29 | Engine() : ptr(wasm_engine_new()) {} |
| 30 | /// \brief Creates an engine with the specified compilation settings. |
| 31 | explicit Engine(Config config) |
| 32 | : ptr(wasm_engine_new_with_config(config.capi_release())) {} |
nothing calls this directly
no test coverage detected