Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ repos:
rev: v1.3.5
hooks:
- id: clang-tidy
files: \.(cpp|hpp|cc|hh|cxx|hxx)$
files: \.(c|h|cpp|hpp|cc|hh|cxx|hxx|inc)$
Comment thread
deku2026 marked this conversation as resolved.
exclude: sse2neon\.h$
args: [--fix, --quiet, --use-color, -p=build]
types_or: [c++, c]
Expand Down
3 changes: 1 addition & 2 deletions include/arcvideo/foundation/render/audioparams.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ extern "C" {
#include <libavutil/channel_layout.h>
}

#include <assert.h>

#include <cassert>
#include <vector>

#include "../util/rational.h"
Expand Down
5 changes: 2 additions & 3 deletions include/arcvideo/foundation/util/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
#ifndef ARCVIDEO_FOUNDATION_VALUE_H
#define ARCVIDEO_FOUNDATION_VALUE_H

#include <stdint.h>
#include <string.h>

#include <cstdint>
#include <cstring>
#include <map>
#include <string>
#include <vector>
Expand Down