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-09 17:15:25 +0200
commit03d29efd14c26217c522838e36c0fe39e40c1168 (patch)
treec2e457627d4e4d5ce0c1ebf8847fe462de97824a /libpkgconf/queue.c
parent298fa0ef5ba39445f960ab056c0d102ae8af91c5 (diff)
Rename requires to requires_ since it is keyword in C++20
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);
}
/*