diff options
| author | Yong Bakos <ybakos@humanoriented.com> | 2016-05-07 09:11:30 -0500 |
|---|---|---|
| committer | Bryce Harrington <bryce@osg.samsung.com> | 2016-05-11 11:09:20 -0700 |
| commit | f86fbe1a115fe2bf0da066e66ed73349cc2c378c (patch) | |
| tree | 39e75d7db2164ad1b390292096646fa4e7bfe5d9 | |
| parent | connection: Move wl_interface_equal to util (diff) | |
| download | wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.tar wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.tar.gz wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.tar.bz2 wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.tar.lz wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.tar.xz wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.tar.zst wayland-f86fbe1a115fe2bf0da066e66ed73349cc2c378c.zip | |
private: Remove unnecessary forward declarations
Declarations for wl_connection and wl_closure are not needed here.
wl_closure already has a complete definition.
Removing these forward declarations results in a clean, warning-free compile.
Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
[Updated to apply to trunk]
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
| -rw-r--r-- | src/wayland-private.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/wayland-private.h b/src/wayland-private.h index a9a07a8..045109b 100644 --- a/src/wayland-private.h +++ b/src/wayland-private.h @@ -103,10 +103,6 @@ wl_map_lookup_flags(struct wl_map *map, uint32_t i); void wl_map_for_each(struct wl_map *map, wl_iterator_func_t func, void *data); -struct wl_connection; -struct wl_closure; -struct wl_proxy; - struct wl_connection * wl_connection_create(int fd); |
