2014-07-23 07:54:41 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-06-20 00:55:23 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2020-03-28 16:57:21 +03:00
|
|
|
#include <type_traits>
|
|
|
|
|
2012-06-20 00:55:23 +04:00
|
|
|
#include "mozilla/TypeTraits.h"
|
|
|
|
|
2017-02-07 21:57:43 +03:00
|
|
|
using mozilla::IsDestructible;
|
2013-05-17 22:07:02 +04:00
|
|
|
|
2016-09-16 10:23:55 +03:00
|
|
|
class PublicDestructible {
|
|
|
|
public:
|
|
|
|
~PublicDestructible();
|
|
|
|
};
|
|
|
|
class PrivateDestructible {
|
|
|
|
private:
|
|
|
|
~PrivateDestructible();
|
|
|
|
};
|
|
|
|
class TrivialDestructible {};
|
|
|
|
|
|
|
|
static_assert(IsDestructible<PublicDestructible>::value,
|
|
|
|
"public destructible class is destructible");
|
|
|
|
static_assert(!IsDestructible<PrivateDestructible>::value,
|
|
|
|
"private destructible class is not destructible");
|
|
|
|
static_assert(IsDestructible<TrivialDestructible>::value,
|
|
|
|
"trivial destructible class is destructible");
|
|
|
|
|
2014-05-13 09:27:14 +04:00
|
|
|
/*
|
|
|
|
* Android's broken [u]intptr_t inttype macros are broken because its PRI*PTR
|
|
|
|
* macros are defined as "ld", but sizeof(long) is 8 and sizeof(intptr_t)
|
|
|
|
* is 4 on 32-bit Android. We redefine Android's PRI*PTR macros in
|
|
|
|
* IntegerPrintfMacros.h and assert here that our new definitions match the
|
|
|
|
* actual type sizes seen at compile time.
|
|
|
|
*/
|
|
|
|
#if defined(ANDROID) && !defined(__LP64__)
|
2020-03-28 16:57:21 +03:00
|
|
|
static_assert(std::is_same_v<int, intptr_t>,
|
2014-05-13 09:27:14 +04:00
|
|
|
"emulated PRI[di]PTR definitions will be wrong");
|
2020-03-28 16:57:21 +03:00
|
|
|
static_assert(std::is_same_v<unsigned int, uintptr_t>,
|
2014-05-13 09:27:14 +04:00
|
|
|
"emulated PRI[ouxX]PTR definitions will be wrong");
|
|
|
|
#endif
|
|
|
|
|
2020-03-28 16:57:17 +03:00
|
|
|
int main() { return 0; }
|