Skip to content

fix missing include #1393

fix missing include

fix missing include #1393

Workflow file for this run

name: format
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- run: clang-format --version
- name: checkout
uses: actions/checkout@v2
- name: apply clang-format
run: |
FILES=$( find . -type f \( -iname \*.h -o -iname \*.cpp \) )
clang-format-12 --style=file -i $FILES
- run: git diff --exit-code --name-only