Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2906ffc authored by Myles Watson's avatar Myles Watson
Browse files

test_vendor: Remove unused extern statements



It should be safe to include C header files without
using extern.

Change-Id: I2b562ef3f76df9f9dac69323345ed3d3610e8bc2
Signed-off-by: default avatarMyles Watson <mylesgw@google.com>
parent dee60917
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -20,9 +20,7 @@
#include <vector>
using std::vector;

extern "C" {
#include "hci/include/hci_hal.h"
}  // extern "C"

namespace test_vendor_lib {

+0 −2
Original line number Diff line number Diff line
@@ -18,11 +18,9 @@

#include "command_packet.h"

extern "C" {
#include "hci/include/hci_hal.h"
#include "osi/include/log.h"
#include "stack/include/hcidefs.h"
}  // extern "C"

namespace test_vendor_lib {

+0 −2
Original line number Diff line number Diff line
@@ -27,11 +27,9 @@
#include "event_packet.h"
#include "hci_transport.h"

extern "C" {
#include "osi/include/log.h"
#include "osi/include/osi.h"
#include "stack/include/hcidefs.h"
}  // extern "C"

namespace {

+0 −2
Original line number Diff line number Diff line
@@ -18,10 +18,8 @@

#include "event_packet.h"

extern "C" {
#include "osi/include/log.h"
#include "stack/include/hcidefs.h"
}  // extern "C"

namespace test_vendor_lib {

+1 −4
Original line number Diff line number Diff line
@@ -18,13 +18,10 @@

#include "packet.h"

#include "base/logging.h"

#include <algorithm>

extern "C" {
#include "base/logging.h"
#include "osi/include/log.h"
}  // extern "C"

namespace test_vendor_lib {

Loading