mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
[clang-tidy] remove pointless public
Found with readability-redundant-access-specifiers Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
68467eeca7
commit
385b069eb2
2 changed files with 1 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
Checks: 'clang-diagnostic-*,clang-analyzer-*,cert-*,performance-*,portability-*,modernize-use-auto,modernize-loop-convert,modernize-use-bool-literals,modernize-use-using,hicpp-uppercase-literal-suffix,readability-make-member-function-const,readability-redundant-string-init,readability-inconsistent-declaration-parameter-name'
|
Checks: 'clang-diagnostic-*,clang-analyzer-*,cert-*,performance-*,portability-*,modernize-use-auto,modernize-loop-convert,modernize-use-bool-literals,modernize-use-using,hicpp-uppercase-literal-suffix,readability-make-member-function-const,readability-redundant-string-init,readability-inconsistent-declaration-parameter-name,readability-redundant-access-specifiers'
|
||||||
WarningsAsErrors: ''
|
WarningsAsErrors: ''
|
||||||
HeaderFilterRegex: ''
|
HeaderFilterRegex: ''
|
||||||
AnalyzeTemporaryDtors: false
|
AnalyzeTemporaryDtors: false
|
||||||
|
|
|
@ -131,7 +131,6 @@ class completion_entry_t {
|
||||||
/// List of all options.
|
/// List of all options.
|
||||||
option_list_t options;
|
option_list_t options;
|
||||||
|
|
||||||
public:
|
|
||||||
/// Command string.
|
/// Command string.
|
||||||
const wcstring cmd;
|
const wcstring cmd;
|
||||||
/// True if command is a path.
|
/// True if command is a path.
|
||||||
|
|
Loading…
Reference in a new issue