Skip to content

Commit 0c11cb8

Browse files
committed
update generated pkgcraft-c support
1 parent 5e16abc commit 0c11cb8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pkgcraft/pkgcraft_c.pxd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ cdef extern from "pkgcraft.h":
9797
pass
9898

9999
# Opaque wrapper for pkgcraft::dep::DepSet.
100-
cdef struct DepSetW:
100+
cdef struct DepSetWrapper:
101101
pass
102102

103103
# Opaque wrapper for pkgcraft::dep::spec::IntoIter<T>.
@@ -113,7 +113,7 @@ cdef extern from "pkgcraft.h":
113113
pass
114114

115115
# Opaque wrapper for pkgcraft::dep::DepSpec.
116-
cdef struct DepSpecW:
116+
cdef struct DepSpecWrapper:
117117
pass
118118

119119
# EAPI object.
@@ -159,13 +159,13 @@ cdef extern from "pkgcraft.h":
159159
cdef struct DepSet:
160160
DepSpecUnit unit
161161
DepSetKind kind
162-
DepSetW *dep
162+
DepSetWrapper *dep
163163

164164
# C-compatible wrapper for pkgcraft::dep::DepSpec.
165165
cdef struct DepSpec:
166166
DepSpecUnit unit
167167
DepSpecKind kind
168-
DepSpecW *dep
168+
DepSpecWrapper *dep
169169

170170
cdef struct PkgcraftError:
171171
char *message

0 commit comments

Comments
 (0)