blob: 00bebcc8901e4e1851f9c996eb9cf26503e11550 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "clickhouse_config.h"
#if USE_LIBARCHIVE
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
#error #include <archive.h>
#error #include <archive_entry.h>
#endif
#endif
|