From fdfd3b6dd70be5a8d456d6837758aa43a90ab3cc Mon Sep 17 00:00:00 2001 From: Egor Date: Fri, 2 Nov 2018 23:00:33 -0700 Subject: Fixed few linux build issues --- Platforms/Basic/interface/BasicAtomics.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Platforms') diff --git a/Platforms/Basic/interface/BasicAtomics.h b/Platforms/Basic/interface/BasicAtomics.h index 3d9ea8ea..a4c40b03 100644 --- a/Platforms/Basic/interface/BasicAtomics.h +++ b/Platforms/Basic/interface/BasicAtomics.h @@ -27,9 +27,10 @@ struct BasicAtomics { - typedef long Long; - typedef std::atomic AtomicLong; - typedef std::atomic AtomicInt64; + using Long = long; + using AtomicLong = std::atomic; + using Int64 = int64_t; + using AtomicInt64 = std::atomic; // The function returns the resulting INCREMENTED value. template -- cgit v1.2.3