forked from boostorg/stacktrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboost_stacktrace_noop.cppm
More file actions
39 lines (30 loc) · 1.02 KB
/
Copy pathboost_stacktrace_noop.cppm
File metadata and controls
39 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright Antony Polukhin, 2025-2026.
// Copyright Fedor Osetrov, 2025-2026.
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
module;
#include <boost/config.hpp>
#include <boost/core/no_exceptions_support.hpp>
#include <boost/container_hash/hash_fwd.hpp>
#if !defined(BOOST_STACKTRACE_USE_STD_MODULE)
#include <vector>
#include <memory>
#endif
#define BOOST_STACKTRACE_INTERFACE_UNIT
#define BOOST_STACKTRACE_LINK
export module boost.stacktrace.noop;
#if defined(BOOST_STACKTRACE_USE_STD_MODULE)
import std;
#endif
#ifdef __clang__
# pragma clang diagnostic ignored "-Winclude-angled-in-module-purview"
#endif
#include <boost/stacktrace/safe_dump_to.hpp>
#include <boost/stacktrace/stacktrace.hpp>
module :private;
#define BOOST_STACKTRACE_INTERNAL_BUILD_LIBS
#include <boost/stacktrace/detail/frame_noop.ipp>
#include <boost/stacktrace/detail/safe_dump_noop.ipp>
#include <boost/stacktrace/detail/collect_noop.ipp>