Skip to content

Commit

Permalink
Fixes #701: Removed gratuitous space for the --no-source-include NV…
Browse files Browse the repository at this point in the history
…RTC compilation option
  • Loading branch information
eyalroz committed Dec 23, 2024
1 parent 4c7e782 commit 7768104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cuda/rtc/compilation_options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ struct gadget<rtc::compilation_options_t<cuda_cpp>, MarshalTarget, Delimiter> {
if (opts.syntax_check_only) { marshalled << opt_start << "--fdevice-syntax-only"; }
if (opts.less_builtins) { marshalled << opt_start << "--minimal"; }
if (not opts.builtin_initializer_list) { marshalled << opt_start << "--builtin-initializer-list=false"; }
if (not opts.source_dirs_in_include_path) { marshalled << opt_start << "--no-source-include "; }
if (not opts.source_dirs_in_include_path) { marshalled << opt_start << "--no-source-include"; }
if (opts.extra_device_vectorization) { marshalled << opt_start << "--extra-device-vectorization"; }
if (opts.disable_warnings) { marshalled << opt_start << "--disable-warnings"; }
if (opts.assume_restrict) { marshalled << opt_start << "--restrict"; }
Expand Down

0 comments on commit 7768104

Please sign in to comment.