diff options
author | Thomas Haller <thaller@redhat.com> | 2016-02-12 14:44:52 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2016-02-12 15:36:01 +0100 |
commit | 2c2d9d2e4cca422a53968cdcb6def420dd77961e (patch) | |
tree | 3c05e45abdd2e3442f4b18123a1818b03c999871 /libnm/nm-vpn-service-plugin.c | |
parent | 97be12b6625e738856814403195b60f7ebc13bfe (diff) |
build: cleanup default includes
- "gsystem-local-alloc.h" and <gio/gio.h> are already included via
"nm-default.h". No need to include them separately.
- include "nm-macros-internal.h" via "nm-default.h" and drop all
explict includes.
- in the modified files, ensure that we always include "config.h"
and "nm-default.h" first. As second, include the header file
for the current source file (if applicable). Then follow external
includes and finally internal nm includes.
- include nm headers inside source code files with quotes
- internal header files don't need to include default headers.
They can savely assume that "nm-default.h" is already included
and with it glib, nm-glib.h, nm-macros-internal.h, etc.
Diffstat (limited to 'libnm/nm-vpn-service-plugin.c')
-rw-r--r-- | libnm/nm-vpn-service-plugin.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libnm/nm-vpn-service-plugin.c b/libnm/nm-vpn-service-plugin.c index 0de380517..c9e3a0c4c 100644 --- a/libnm/nm-vpn-service-plugin.c +++ b/libnm/nm-vpn-service-plugin.c @@ -21,20 +21,19 @@ #include "config.h" +#include "nm-default.h" #include "nm-vpn-service-plugin.h" #include <errno.h> #include <signal.h> #include <stdlib.h> -#include "nm-glib.h" #include "nm-enum-types.h" #include "nm-utils.h" #include "nm-connection.h" #include "nm-dbus-helpers.h" #include "nm-core-internal.h" #include "nm-simple-connection.h" -#include "nm-macros-internal.h" #include "nmdbus-vpn-plugin.h" |