@@ -228,7 +228,7 @@ kernel_bundle<bundle_state::executable> build(
228
228
const kernel_bundle<bundle_state::ext_oneapi_source>& sourceBundle,
229
229
PropertyListT props = {})
230
230
231
- } // namespace sycl::ext::oneapi::experimental {
231
+ } // namespace sycl::ext::oneapi::experimental
232
232
----
233
233
!====
234
234
@@ -300,15 +300,15 @@ namespace sycl::ext::oneapi::experimental {
300
300
301
301
struct build_options {
302
302
std::vector<std::string> opts;
303
- build_options(const std::string &opt); (1)
303
+ build_options(const std::string &opt); (1)
304
304
build_options(const std::vector<std::string> &opts); (2)
305
305
};
306
306
using build_options_key = build_options;
307
307
308
308
template<>
309
309
struct is_property_key<build_options_key> : std::true_type {};
310
310
311
- } // namespace sycl::ext::oneapi::experimental {
311
+ } // namespace sycl::ext::oneapi::experimental
312
312
----
313
313
!====
314
314
@@ -335,14 +335,14 @@ namespace sycl::ext::oneapi::experimental {
335
335
336
336
struct save_log {
337
337
std::string *log;
338
- save_log(std::string *to); (1)
338
+ save_log(std::string *to);
339
339
};
340
340
using save_log_key = save_log;
341
341
342
342
template<>
343
343
struct is_property_key<save_log_key> : std::true_type {};
344
344
345
- } // namespace sycl::ext::oneapi::experimental {
345
+ } // namespace sycl::ext::oneapi::experimental
346
346
----
347
347
!====
348
348
@@ -361,8 +361,7 @@ provided in the log.
361
361
In general, the log information is intended for human consumption, and the
362
362
format may not be stable across implementations of this extension.
363
363
364
- _Effects (1):_ Constructs a `save_log` property with a pointer to a
365
- `std::string`.
364
+ _Effects:_ Constructs a `save_log` property with a pointer to a `std::string`.
366
365
When the `build` function completes successfully, this string will contain the
367
366
log.
368
367
0 commit comments