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>
/* local includes */
#include <acpi.h>
#include <smbios_table_reporter.h>
#include "acpi.h"
#include "smbios_table_reporter.h"
namespace Acpi {

View File

@ -12,8 +12,8 @@
*/
/* local includes */
#include <smbios_table_reporter.h>
#include <efi_system_table.h>
#include "smbios_table_reporter.h"
#include "efi_system_table.h"
/* Genode includes */
#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.
*/
#include <framebuffer.h>
#include "framebuffer.h"
#include <base/component.h>
using namespace Framebuffer;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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