From 62e5f722899cfa7c51791be7697c9030aee3a19b Mon Sep 17 00:00:00 2001 From: Regina Pfeifer Date: Fri, 23 Aug 2019 23:25:56 +0200 Subject: clang-tidy: Replace typedef with using --- Source/cmUuid.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/cmUuid.cxx') diff --git a/Source/cmUuid.cxx b/Source/cmUuid.cxx index 0dc6ca7f37..91c8af3256 100644 --- a/Source/cmUuid.cxx +++ b/Source/cmUuid.cxx @@ -53,7 +53,7 @@ void cmUuid::CreateHashInput(std::vector const& uuidNamespace, std::string cmUuid::FromDigest(const unsigned char* digest, unsigned char version) const { - typedef unsigned char byte_t; + using byte_t = unsigned char; byte_t uuid[16] = { 0 }; memcpy(uuid, digest, 16); -- cgit v1.2.1