6ddecf61ec
used since...
commit dacc1b40df
Date: Sat Jul 28 16:33:22 2018 +0100
ofz#9597 rethrown IOException not caught by catch IOException
the adjustedPtr seems to be as expected, but the type_info not. Presumably
these are thrown as 'dependent exceptions' (?)
https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/libsupc%2B%2B/eh_type.cc#L42
Change-Id: Ibd736abe941bb1d5facdb88139b3a0e6cf32cf1f
Reviewed-on: https://gerrit.libreoffice.org/58477
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
26 lines
873 B
C
26 lines
873 B
C
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* 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/.
|
|
*/
|
|
|
|
#ifndef CONFIG_CXXABI_H
|
|
#define CONFIG_CXXABI_H
|
|
|
|
#define HAVE_CXXABI_H_BASE_CLASS_TYPE_INFO 0
|
|
#define HAVE_CXXABI_H_CLASS_TYPE_INFO 0
|
|
#define HAVE_CXXABI_H_CXA_ALLOCATE_EXCEPTION 0
|
|
#define HAVE_CXXABI_H_CXA_EH_GLOBALS 0
|
|
#define HAVE_CXXABI_H_CXA_EXCEPTION 0
|
|
#define HAVE_CXXABI_H_CXA_GET_GLOBALS 0
|
|
#define HAVE_CXXABI_H_CXA_CURRENT_EXCEPTION_TYPE 0
|
|
#define HAVE_CXXABI_H_CXA_THROW 0
|
|
#define HAVE_CXXABI_H_SI_CLASS_TYPE_INFO 0
|
|
#define HAVE_CXXABI_H_VMI_CLASS_TYPE_INFO 0
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|