summaryrefslogtreecommitdiff
path: root/zen/tick_count.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/tick_count.h')
-rw-r--r--zen/tick_count.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/zen/tick_count.h b/zen/tick_count.h
index 89910e14..5ba4fd1b 100644
--- a/zen/tick_count.h
+++ b/zen/tick_count.h
@@ -1,8 +1,8 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
-// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
-// **************************************************************************
+// *****************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
+// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
+// *****************************************************************************
#ifndef TICK_COUNT_H_3807326223463457
#define TICK_COUNT_H_3807326223463457
@@ -42,11 +42,11 @@ class TickVal
{
public:
#ifdef ZEN_WIN
- typedef LARGE_INTEGER NativeVal;
+ using NativeVal = LARGE_INTEGER;
#elif defined ZEN_LINUX
- typedef timespec NativeVal;
+ using NativeVal = timespec;
#elif defined ZEN_MAC
- typedef uint64_t NativeVal;
+ using NativeVal = uint64_t;
#endif
TickVal() {}
bgstack15