Use quoted includes for application heeaders

This allows clang to classify headers properly

Signed-off-by: Christophe de Dinechin <christophe@dinechin.org>
This commit is contained in:
Christophe de Dinechin 2022-10-14 09:23:25 +02:00
parent ec89310a8b
commit 5ebfe20527
12 changed files with 26 additions and 24 deletions

View file

@ -29,7 +29,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <rpl.h>
#include "rpl.h"
inline void beep(int freq, int dur)
// ----------------------------------------------------------------------------

View file

@ -27,8 +27,8 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <integer.h>
#include <runtime.h>
#include "integer.h"
#include "runtime.h"
#include <stdio.h>

View file

@ -29,7 +29,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <object.h>
#include "object.h"
struct integer : object
// ----------------------------------------------------------------------------

View file

@ -29,7 +29,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <stdint.h>
#include <cstdint>
template <typename Data, typename Int = uint>
inline Int leb128(Data *&p)

View file

@ -27,12 +27,13 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <main.h>
#include <dmcp.h>
#include "menu.h"
#include <menu.h>
#include <stdio.h>
#include <types.h>
#include "main.h"
#include "types.h"
#include <cstdio>
#include <dmcp.h>
const uint8_t application_menu_items[] =
// ----------------------------------------------------------------------------

View file

@ -27,11 +27,12 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <object.h>
#include <integer.h>
#include <rplstring.h>
#include "object.h"
#include "integer.h"
#include "rplstring.h"
#include "runtime.h"
#include <runtime.h>
#include <stdio.h>

View file

@ -46,8 +46,8 @@
// commands or as types
#include <types.h>
#include <leb128.h>
#include "types.h"
#include "leb128.h"
struct runtime;

View file

@ -29,8 +29,8 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <object.h>
#include <runtime.h>
#include "object.h"
#include "runtime.h"

View file

@ -27,8 +27,8 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <rplstring.h>
#include <runtime.h>
#include "rplstring.h"
#include "runtime.h"
#include <stdio.h>

View file

@ -29,7 +29,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <object.h>
#include "object.h"
struct string : object
// ----------------------------------------------------------------------------

View file

@ -27,8 +27,8 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <runtime.h>
#include <object.h>
#include "runtime.h"
#include "object.h"
#include <cstring>
// The one and only runtime

View file

@ -29,7 +29,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// ****************************************************************************
#include <types.h>
#include "types.h"
struct object; // RPL object