Skip to content

in C++20, postfix increment on an iterator is allowed to return void #31

in C++20, postfix increment on an iterator is allowed to return void

in C++20, postfix increment on an iterator is allowed to return void #31

Workflow file for this run

name: build
on:
push:
branches: [ main ]
jobs:
run-on-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
dir: ['./example/diff', './example/suffix_tree_viz', './test']
compiler: ['g++']
steps:
- uses: actions/checkout@v3
- working-directory: ${{ matrix.dir }}
run: |
chmod u+x ./gcc.sh
./gcc.sh ${{ matrix.compiler }}
run-on-windows:
runs-on: windows-latest
strategy:
matrix:
dir: ['./example/diff', './example/suffix_tree_viz', './test']
compiler: ['cl']
steps:
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1
- working-directory: ${{ matrix.dir }}
run: Invoke-Expression "./msvc.bat ${{ matrix.compiler }}"