Home | History | Annotate | Download | only in src
      1 //===------------------------- typeinfo.cpp -------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 #include "typeinfo"
     11 
     12 // FIXME: Remove __APPLE__ default here once buildit is gone.
     13 #if (!defined(_LIBCPP_ABI_MICROSOFT) && !defined(LIBCXX_BUILDING_LIBCXXABI) && \
     14     !defined(LIBCXXRT) && !defined(__GLIBCXX__) && \
     15     !defined(__APPLE__)) || \
     16     defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY) // FIXME: remove this configuration.
     17 std::type_info::~type_info()
     18 {
     19 }
     20 #endif
     21