aboutsummaryrefslogtreecommitdiff
path: root/src/typeinfo.cpp
blob: 02778f36870473a81520d8781792c410c85ff1ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//===------------------------- typeinfo.cpp -------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "typeinfo"

// FIXME: Remove __APPLE__ default here once buildit is gone.
#if (!defined(_LIBCPP_ABI_MICROSOFT) && !defined(LIBCXX_BUILDING_LIBCXXABI) && \
    !defined(LIBCXXRT) && !defined(__GLIBCXX__) && \
    !defined(__APPLE__)) || \
    defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY) // FIXME: remove this configuration.
std::type_info::~type_info()
{
}
#endif