summaryrefslogtreecommitdiffstats
path: root/vpnor/test/dump_flash.cpp
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2019-03-14 09:57:28 +1030
committerAndrew Jeffery <andrew@aj.id.au>2019-03-15 22:38:43 +1030
commit261f61a1747a9ebf092d4f426e891ff94ad33ffc (patch)
tree218beb17e6deb8594b1278ccfd14446dcc7df645 /vpnor/test/dump_flash.cpp
parent8e1d5dda93130819e26ee718375e43936c971781 (diff)
downloadphosphor-mboxbridge-261f61a1747a9ebf092d4f426e891ff94ad33ffc.tar.gz
phosphor-mboxbridge-261f61a1747a9ebf092d4f426e891ff94ad33ffc.zip
vpnor: Shuffle and rework includes for sanity
Include ordering and whether or not C linkage is forced by `extern "C"` blocks can cause headaches at link time. Ensure that all C dependencies are included in an `extern C` block before other includes occur. Also include the C++ versions of string.h and assert.h Change-Id: Ia96f6044d40c8eccb907b65924efcf62ac7a89c3 Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Diffstat (limited to 'vpnor/test/dump_flash.cpp')
-rw-r--r--vpnor/test/dump_flash.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/vpnor/test/dump_flash.cpp b/vpnor/test/dump_flash.cpp
index 84a88d8..5179b7c 100644
--- a/vpnor/test/dump_flash.cpp
+++ b/vpnor/test/dump_flash.cpp
@@ -3,19 +3,19 @@
#include "config.h"
-#include <assert.h>
-#include <string.h>
-
-#include "transport_mbox.h"
-#include "vpnor/mboxd_pnor_partition_table.h"
-
extern "C" {
#include "test/mbox.h"
#include "test/system.h"
+#include "transport_mbox.h"
}
#include "vpnor/test/tmpd.hpp"
+#include <cassert>
+#include <cstring>
+
+#include "vpnor/mboxd_pnor_partition_table.h"
+
struct test_context
{
uint8_t seq;
OpenPOWER on IntegriCloud