summaryrefslogtreecommitdiffstats
path: root/Source/cmUVHandlePtr.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-01-22 15:33:22 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2021-01-27 13:45:44 (GMT)
commitc826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce (patch)
treefd692d5b557cea163005598b0c541b79a1c57069 /Source/cmUVHandlePtr.h
parent675d81be6c728d21b78314f763ba060855b1366b (diff)
downloadCMake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.zip
CMake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.tar.gz
CMake-c826461d9cd5d7a6cb32a09ccc44f9e2f3dd9dce.tar.bz2
clang-tidy: fix `bugprone-reserved-identifier` warnings
Diffstat (limited to 'Source/cmUVHandlePtr.h')
-rw-r--r--Source/cmUVHandlePtr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmUVHandlePtr.h b/Source/cmUVHandlePtr.h
index 356e227..8c5ad59 100644
--- a/Source/cmUVHandlePtr.h
+++ b/Source/cmUVHandlePtr.h
@@ -78,7 +78,7 @@ template <typename T>
class uv_handle_ptr_base_
{
protected:
- template <typename _T>
+ template <typename U>
friend class uv_handle_ptr_base_;
/**
@@ -160,7 +160,7 @@ inline uv_handle_ptr_base_<T>& uv_handle_ptr_base_<T>::operator=(
template <typename T>
class uv_handle_ptr_ : public uv_handle_ptr_base_<T>
{
- template <typename _T>
+ template <typename U>
friend class uv_handle_ptr_;
public: