Kea 2.5.8
botan_boost_wrapper.h
Go to the documentation of this file.
1// Copyright (C) 2021 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7// Do not include this header directly: use crypto_tls.h instead.
8
9#ifndef BOTAN_BOOST_WRAPPER_H
10#define BOTAN_BOOST_WRAPPER_H
11
13
14#if defined(WITH_BOTAN) && defined(WITH_BOTAN_BOOST)
15
18
19#if defined(__GNUC__) || defined(__clang__)
20#pragma GCC diagnostic push
21#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
22#endif
23
24#include <botan/asio_error.h>
25
26#if defined(__GNUC__) || defined(__clang__)
27#pragma GCC diagnostic pop
28#endif
29
30#endif // WITH_BOTAN && WITH_BOTAN_BOOST
31
32#endif // BOTAN_BOOST_WRAPPER_H