Skip to content

Commit 0304541

Browse files
committed
fixed include quotes
Signed-off-by: Vlad Romanov <[email protected]>
1 parent 56a5e5a commit 0304541

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

sycl/source/detail/config.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <detail/config.hpp>
9+
#include "detail/config.hpp"
1010

1111
#include <cstring>
1212
#include <fstream>
@@ -30,7 +30,7 @@ namespace detail {
3030
const char *const SYCLConfigBase<Name>::MCompileTimeDef = \
3131
getStrOrNullptr(STRINGIFY_LINE(CompileTimeDef)); \
3232
const char *const SYCLConfigBase<Name>::MConfigName = STRINGIFY_LINE(Name);
33-
#include <detail/config.def>
33+
#include "detail/config.def"
3434
#undef CONFIG
3535

3636
#define MAX_CONFIG_NAME 256
@@ -42,7 +42,7 @@ static void initValue(const char *Key, const char *Value) {
4242
SYCLConfigBase<Name>::MValueFromFile = SYCLConfigBase<Name>::MStorage; \
4343
return; \
4444
}
45-
#include <detail/config.def>
45+
#include "detail/config.def"
4646
#undef CONFIG
4747
}
4848

@@ -92,7 +92,7 @@ void dumpConfig() {
9292
const char *Val = SYCLConfig<Name>::get(); \
9393
std::cerr << SYCLConfigBase<Name>::MConfigName << " : " \
9494
<< (Val ? Val : "unset") << std::endl;
95-
#include <detail/config.def>
95+
#include "detail/config.def"
9696
#undef CONFIG
9797
}
9898

sycl/source/detail/scheduler/graph_builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
#include <CL/sycl/access/access.hpp>
10-
#include <detail/config.hpp>
10+
#include "detail/config.hpp"
1111
#include <CL/sycl/detail/event_impl.hpp>
1212
#include <CL/sycl/detail/memory_manager.hpp>
1313
#include <CL/sycl/detail/queue_impl.hpp>

0 commit comments

Comments
 (0)