summaryrefslogtreecommitdiffstats
path: root/Source/cmFileLockResult.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-09-06 16:37:55 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-09-06 16:38:04 (GMT)
commitca8c3d64c8accebeacf322f0574494ffddb039c5 (patch)
tree8e5ef52b55ceb4920e7e063cf91b15487915643a /Source/cmFileLockResult.h
parent45e90f62dd422a93b14b5ed9d49d26a51116d4fd (diff)
parent1d3f5ebb0d3da35d1b5b1287f39115b188ac5f6a (diff)
downloadCMake-ca8c3d64c8accebeacf322f0574494ffddb039c5.zip
CMake-ca8c3d64c8accebeacf322f0574494ffddb039c5.tar.gz
CMake-ca8c3d64c8accebeacf322f0574494ffddb039c5.tar.bz2
Merge topic 'use-using'
1d3f5ebb0d clang-tidy: Enable check modernize-use-using a1ddf2d0ba clang-tidy: Replace typedef with using Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3782
Diffstat (limited to 'Source/cmFileLockResult.h')
-rw-r--r--Source/cmFileLockResult.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileLockResult.h b/Source/cmFileLockResult.h
index c452814..81c1906 100644
--- a/Source/cmFileLockResult.h
+++ b/Source/cmFileLockResult.h
@@ -19,7 +19,7 @@ class cmFileLockResult
{
public:
#if defined(_WIN32)
- typedef DWORD Error;
+ using Error = DWORD;
#else
using Error = int;
#endif