We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clap.Host
1 parent 5827335 commit 9473135Copy full SHA for 9473135
CHANGELOG.md
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8
+## [Unreleased]
9
+### Fixed
10
+* Dropped `clap.Host` heap workaround to fix compilation.
11
+
12
## [0.1.3] - 2024-03-29
13
### Fixed
14
* Explicitly cast plugin feature strings to prevent warnings.
host.c.v
@@ -27,10 +27,5 @@ pub:
27
request_callback fn (host &Host)
28
}
29
30
-// XXX: Workaround because:
31
-// pub type Host = C.clap_host_t
32
-// doesn't pass the @[heap] flag.
33
-@[heap]
34
-pub struct Host {
35
- C.clap_host_t
36
-}
+pub type Host = C.clap_host_t
0 commit comments