forked from M-Labs/nac3
1
0
Fork 0

[core] Use quoted include paths instead of angled brackets

This is preferred for user-defined headers.
This commit is contained in:
David Mak 2024-08-28 16:37:03 +08:00
parent c8dfdcfdea
commit 15ac00708a
6 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
#include <irrt/exception.hpp> #include "irrt/exception.hpp"
#include <irrt/int_types.hpp> #include "irrt/int_types.hpp"
#include <irrt/list.hpp> #include "irrt/list.hpp"
#include <irrt/math.hpp> #include "irrt/math.hpp"
#include <irrt/ndarray.hpp> #include "irrt/ndarray.hpp"
#include <irrt/slice.hpp> #include "irrt/slice.hpp"

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <irrt/int_types.hpp> #include "irrt/int_types.hpp"
template<typename SizeT> template<typename SizeT>
struct CSlice { struct CSlice {

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#include <irrt/cslice.hpp> #include "irrt/cslice.hpp"
#include <irrt/int_types.hpp> #include "irrt/int_types.hpp"
/** /**
* @brief The int type of ARTIQ exception IDs. * @brief The int type of ARTIQ exception IDs.

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#include <irrt/int_types.hpp> #include "irrt/int_types.hpp"
#include <irrt/math_util.hpp> #include "irrt/math_util.hpp"
extern "C" { extern "C" {
// Handle list assignment and dropping part of the list when // Handle list assignment and dropping part of the list when

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <irrt/int_types.hpp> #include "irrt/int_types.hpp"
namespace { namespace {
template<typename SizeT> template<typename SizeT>

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <irrt/int_types.hpp> #include "irrt/int_types.hpp"
extern "C" { extern "C" {
SliceIndex __nac3_slice_index_bound(SliceIndex i, const SliceIndex len) { SliceIndex __nac3_slice_index_bound(SliceIndex i, const SliceIndex len) {