diff options
author | alexv-smirnov <[email protected]> | 2022-12-20 00:50:48 +0300 |
---|---|---|
committer | alexv-smirnov <[email protected]> | 2022-12-20 00:50:48 +0300 |
commit | 84f2cfa253cc618438ed6e9d68b33fa7c0d88cb9 (patch) | |
tree | f0cf2236e0aafb3e437199f1ac7b559e7fad554a /contrib/restricted/boost/stacktrace/src | |
parent | bde6febc1ad3b826e72746de21d7250803e8e0b5 (diff) |
add windows platform to ydb github export
Diffstat (limited to 'contrib/restricted/boost/stacktrace/src')
-rw-r--r-- | contrib/restricted/boost/stacktrace/src/windbg.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/restricted/boost/stacktrace/src/windbg.cpp b/contrib/restricted/boost/stacktrace/src/windbg.cpp new file mode 100644 index 00000000000..0db6daa1b3d --- /dev/null +++ b/contrib/restricted/boost/stacktrace/src/windbg.cpp @@ -0,0 +1,14 @@ +// Copyright Antony Polukhin, 2016-2020. +// +// 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) + +#define BOOST_STACKTRACE_INTERNAL_BUILD_LIBS + +#ifndef BOOST_STACKTRACE_LINK +#error BOOST_STACKTRACE_LINK must be defined +#endif + +#include <boost/stacktrace/detail/frame_msvc.ipp> +#include <boost/stacktrace/safe_dump_to.hpp> |