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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
repos:
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -32,13 +32,13 @@ repos:

# Python hooks
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.3.0
hooks:
- id: flake8

# CPP hooks
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 'v14.0.6'
rev: 'v21.1.5'
hooks:
- id: clang-format

3 changes: 1 addition & 2 deletions ulog_cpp/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ template <typename T>
struct is_vector : std::false_type { // NOLINT(*-identifier-naming)
};
template <typename T>
struct is_vector<std::vector<T>> : std::true_type {
};
struct is_vector<std::vector<T>> : std::true_type {};

/**
* SFINAE helper to check if a type is a string
Expand Down
Loading