fix use after free by removing instrumentation from destroyDaphneContext
#273
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: check-clang-format | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DoozyX/clang-format-lint-action@v0.18.1 | |
| with: | |
| source: 'src test' | |
| exclude: './third_party ./external' | |
| extensions: 'h,cpp' | |
| clangFormatVersion: 18.1.3 |