Fix preprocessor warning in base64.cpp

Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
Osyotr 2024-04-06 16:45:23 +03:00 committed by Viktor Havaka
parent a8f631a4fd
commit 419faf647b

View file

@ -1,8 +1,9 @@
#include "coding/base64.hpp"
#if defined(__GNUC__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreorder"
#if defined(__clang__)
#elif defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-local-typedef"
#endif
@ -12,10 +13,11 @@
#include <boost/archive/iterators/binary_from_base64.hpp>
#include <boost/archive/iterators/transform_width.hpp>
#if defined(__clang__)
#if defined(__GNUC__)
#pragma GCC diagnostic pop
#elif defined(__clang__)
#pragma clang diagnostic pop
#endif
#pragma GCC diagnostic pop
namespace base64
{