mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Fix clang-tidy modernize-type-traits warnings in headers
This commit is contained in:
parent
23184af21c
commit
157c488b9d
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ public:
|
||||||
|
|
||||||
using element_type = T;
|
using element_type = T;
|
||||||
|
|
||||||
using value_type = typename std::remove_cv<T>::type;
|
using value_type = std::remove_cv_t<T>;
|
||||||
|
|
||||||
using index_type = size_t;
|
using index_type = size_t;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue