Skip to content

Commit c967c6f

Browse files
committed
fix .yml
1 parent 960e9ab commit c967c6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ucto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
matrix:
3838
os: [ubuntu-latest, macos-latest]
39-
compiler: [g++-12, clang++]
39+
compiler: [g++-12, clang++ -c++17]
4040

4141
steps:
4242
- uses: actions/[email protected]

src/ucto.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ void runtime_opts::fill( TiCC::CL_Options& Opts ){
373373
pass_thru = Opts.extract( "passthru" );
374374
Opts.extract("normalize", norm_set_string );
375375
Opts.extract( "separators", separators );
376-
Opts.extract( "keep-spaces-inside-quotes", keep_quoted_spaces );
376+
keep_quoted_spaces = Opts.extract( "keep-spaces-inside-quotes" );
377377
if ( keep_quoted_spaces && quotedetection ){
378378
throw TiCC::OptionError( "ucto: combining '--keep-spaces-inside-quotes' "
379379
"conflicts with '-Q'" );

0 commit comments

Comments
 (0)