X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FLockTraitsBoost.h;h=081d3f8f4a349aa536885a6b54b783edab4e6b28;hb=79cb7776b1727ff98e5e53b049acc608c2cdda05;hp=459a5fe8c9928f0314ad264ca81c1f2cb6c47a9e;hpb=06064ddfc3d896e897be08d1e2b818852a1ad79f;p=folly.git diff --git a/folly/LockTraitsBoost.h b/folly/LockTraitsBoost.h index 459a5fe8..081d3f8f 100644 --- a/folly/LockTraitsBoost.h +++ b/folly/LockTraitsBoost.h @@ -1,5 +1,5 @@ /* - * Copyright 2016 Facebook, Inc. + * Copyright 2017 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,7 +44,7 @@ boost::chrono::duration> toBoostDuration( */ template <> struct LockTraits - : public folly::detail::LockTraitsSharedBase { + : public LockTraitsBase { static constexpr bool is_shared = true; static constexpr bool is_timed = true; @@ -68,7 +68,7 @@ struct LockTraits */ template <> struct LockTraits - : public folly::detail::LockTraitsUniqueBase { + : public LockTraitsBase { static constexpr bool is_shared = false; static constexpr bool is_timed = true; @@ -85,7 +85,7 @@ struct LockTraits */ template <> struct LockTraits - : public folly::detail::LockTraitsUniqueBase { + : public LockTraitsBase { static constexpr bool is_shared = false; static constexpr bool is_timed = true;