diff options
author | Patrick Venture <venture@google.com> | 2018-07-09 12:30:59 -0700 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2018-08-27 17:52:43 +0000 |
commit | 189d44eddd93d1a2eb9e69d479b2f66b7d41f59c (patch) | |
tree | bb0940203bc418d8071cc978d035678c2138dcbe /vlan_interface.cpp | |
parent | ad21fc2a868122aee973ed5d4f1c652ec2749533 (diff) | |
download | phosphor-networkd-189d44eddd93d1a2eb9e69d479b2f66b7d41f59c.tar.gz phosphor-networkd-189d44eddd93d1a2eb9e69d479b2f66b7d41f59c.zip |
reorder headers
Reordering all the headers to the following structure:
header file:
local
c
cpp (including openbmc libraries)
source file:
source.hpp (if applicable)
local
c
cpp
Change-Id: Ia74a5c761a3029819366159de3cfd40c5e4c4a2c
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'vlan_interface.cpp')
-rw-r--r-- | vlan_interface.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vlan_interface.cpp b/vlan_interface.cpp index 8f7c5ce..e7854de 100644 --- a/vlan_interface.cpp +++ b/vlan_interface.cpp @@ -1,16 +1,16 @@ +#include "vlan_interface.hpp" + #include "config.h" #include "ethernet_interface.hpp" -#include "vlan_interface.hpp" #include "network_manager.hpp" -#include <phosphor-logging/log.hpp> -#include "xyz/openbmc_project/Common/error.hpp" -#include <phosphor-logging/elog-errors.hpp> - -#include <string> #include <algorithm> -#include <fstream> #include <experimental/filesystem> +#include <fstream> +#include <phosphor-logging/elog-errors.hpp> +#include <phosphor-logging/log.hpp> +#include <string> +#include <xyz/openbmc_project/Common/error.hpp> namespace phosphor { |