util/RefCount, db/simple/Mount: remove obsolete libc++ workarounds

No longer a problem with NDK r16.
This commit is contained in:
Max Kellermann
2018-01-19 23:19:46 +01:00
parent d029dae7ad
commit 3ca80a7336
2 changed files with 0 additions and 12 deletions

View File

@@ -42,11 +42,6 @@ class RefCount {
std::atomic_uint n;
public:
#ifndef _LIBCPP_VERSION
/* the "constexpr" is missing in libc++'s "atomic"
implementation */
constexpr
#endif
RefCount():n(1) {}
void Increment() {