Clang: do not use angle brackets for local includes

This commit is contained in:
Ehmry - 2019-10-06 18:44:07 +02:00
parent c67d81dc99
commit ac8fb6702a
12 changed files with 14 additions and 14 deletions

View File

@ -18,8 +18,8 @@
#include <util/xml_generator.h> #include <util/xml_generator.h>
/* local includes */ /* local includes */
#include <acpi.h> #include "acpi.h"
#include <smbios_table_reporter.h> #include "smbios_table_reporter.h"
namespace Acpi { namespace Acpi {

View File

@ -12,8 +12,8 @@
*/ */
/* local includes */ /* local includes */
#include <smbios_table_reporter.h> #include "smbios_table_reporter.h"
#include <efi_system_table.h> #include "efi_system_table.h"
/* Genode includes */ /* Genode includes */
#include <base/attached_io_mem_dataspace.h> #include <base/attached_io_mem_dataspace.h>

View File

@ -11,7 +11,7 @@
* under the terms of the GNU Affero General Public License version 3. * under the terms of the GNU Affero General Public License version 3.
*/ */
#include <framebuffer.h> #include "framebuffer.h"
#include <base/component.h> #include <base/component.h>
using namespace Framebuffer; using namespace Framebuffer;

View File

@ -16,7 +16,7 @@
#include <dataspace/capability.h> #include <dataspace/capability.h>
#include <os/static_root.h> #include <os/static_root.h>
#include <framebuffer.h> #include "framebuffer.h"
struct Main { struct Main {

View File

@ -29,8 +29,8 @@
#include <util/misc_math.h> #include <util/misc_math.h>
/* local includes */ /* local includes */
#include <util.h> #include "util.h"
#include <pci.h> #include "pci.h"
namespace { namespace {

View File

@ -20,7 +20,7 @@
#include <irq_session/connection.h> #include <irq_session/connection.h>
/* platform local includes */ /* platform local includes */
#include <irq_proxy.h> #include "irq_proxy.h"
namespace Platform { namespace Platform {

View File

@ -16,7 +16,7 @@
/* Genode */ /* Genode */
#include <io_port_session/connection.h> #include <io_port_session/connection.h>
#include "rtc.h" #include "../../rtc.h"
using namespace Genode; using namespace Genode;

View File

@ -17,7 +17,7 @@
#include <base/attached_io_mem_dataspace.h> #include <base/attached_io_mem_dataspace.h>
/* local includes */ /* local includes */
#include <uart_component.h> #include "uart_component.h"
struct Main struct Main

View File

@ -22,7 +22,7 @@
enum { UARTS_NUM = 4 }; /* needed by base class definitions */ enum { UARTS_NUM = 4 }; /* needed by base class definitions */
/* local includes */ /* local includes */
#include <uart_driver_base.h> #include "../../uart_driver_base.h"
class Uart::Driver : public Uart::Driver_base class Uart::Driver : public Uart::Driver_base
{ {

View File

@ -14,7 +14,7 @@
#ifndef _CBW_CSW_H_ #ifndef _CBW_CSW_H_
#define _CBW_CSW_H_ #define _CBW_CSW_H_
#include <scsi.h> #include "scsi.h"
namespace Usb { namespace Usb {
struct Cbw; struct Cbw;

View File

@ -29,7 +29,7 @@
static bool verbose_scsi = false; static bool verbose_scsi = false;
/* local includes */ /* local includes */
#include <cbw_csw.h> #include "cbw_csw.h"
namespace Usb { namespace Usb {