aboutsummaryrefslogtreecommitdiff
path: root/libpkgconf/queue.c
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-11-06 17:52:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-11-06 17:52:53 +0200
commit019768ad8cadfd4bc3305ceea50c33228687d421 (patch)
tree0b3c3cfa19dd3909dd3e7547947b9a4684525bef /libpkgconf/queue.c
parent298fa0ef5ba39445f960ab056c0d102ae8af91c5 (diff)
Rename requires to requires_ since it is keyword in C++20requires
Diffstat (limited to 'libpkgconf/queue.c')
-rw-r--r--libpkgconf/queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpkgconf/queue.c b/libpkgconf/queue.c
index 73507fa..fb6eefd 100644
--- a/libpkgconf/queue.c
+++ b/libpkgconf/queue.c
@@ -77,10 +77,10 @@ pkgconf_queue_compile(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_li
pkgconf_queue_t *pkgq;
pkgq = iter->data;
- pkgconf_dependency_parse(client, world, &world->requires, pkgq->package);
+ pkgconf_dependency_parse(client, world, &world->requires_, pkgq->package);
}
- return (world->requires.head != NULL);
+ return (world->requires_.head != NULL);
}
/*