mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 02:19:18 -05:00
clang-tidy: Replace typedef with using
This commit is contained in:
committed by
Brad King
parent
711e1c3ada
commit
62e5f72289
@@ -235,8 +235,8 @@ namespace std {
|
||||
template <>
|
||||
struct hash<cmFindPackageCommand::ConfigFileInfo>
|
||||
{
|
||||
typedef cmFindPackageCommand::ConfigFileInfo argument_type;
|
||||
typedef size_t result_type;
|
||||
using argument_type = cmFindPackageCommand::ConfigFileInfo;
|
||||
using result_type = size_t;
|
||||
|
||||
result_type operator()(argument_type const& s) const noexcept
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user