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 @@ -45,7 +45,7 @@ repos:
name: check .editorconfig rules

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.7
rev: v20.1.0
hooks:
- id: clang-format

Expand Down
5 changes: 3 additions & 2 deletions cpp-terminal/terminal_impl.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*

Check warning on line 1 in cpp-terminal/terminal_impl.hpp

View workflow job for this annotation

GitHub Actions / cpp-linter

cpp-terminal/terminal_impl.hpp:1:1 [llvm-header-guard]

header is missing header guard

Check warning on line 1 in cpp-terminal/terminal_impl.hpp

View workflow job for this annotation

GitHub Actions / cpp-linter

cpp-terminal/terminal_impl.hpp:1:1 [llvm-header-guard]

header is missing header guard
* cpp-terminal
* C++ library for writing multi-platform terminal applications.
*
Expand All @@ -10,7 +10,7 @@
#pragma once

#include "cpp-terminal/options.hpp"
#include "cpp-terminal/terminal_initializer.hpp"

Check warning on line 13 in cpp-terminal/terminal_impl.hpp

View workflow job for this annotation

GitHub Actions / cpp-linter

cpp-terminal/terminal_impl.hpp:13:1 [misc-include-cleaner]

included header terminal_initializer.hpp is not used directly

Check warning on line 13 in cpp-terminal/terminal_impl.hpp

View workflow job for this annotation

GitHub Actions / cpp-linter

cpp-terminal/terminal_impl.hpp:13:1 [misc-include-cleaner]

included header terminal_initializer.hpp is not used directly

#include <cstddef>
#include <string>
Expand All @@ -18,9 +18,10 @@
namespace Term
{

namespace Private {
class Signals;
namespace Private
{
class Signals;
}

Check warning on line 24 in cpp-terminal/terminal_impl.hpp

View workflow job for this annotation

GitHub Actions / cpp-linter

cpp-terminal/terminal_impl.hpp:24:1 [llvm-namespace-comment]

namespace 'Private' not terminated with a closing comment

Check warning on line 24 in cpp-terminal/terminal_impl.hpp

View workflow job for this annotation

GitHub Actions / cpp-linter

cpp-terminal/terminal_impl.hpp:24:1 [llvm-namespace-comment]

namespace 'Private' not terminated with a closing comment

class Terminal
{
Expand Down
Loading