mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
4ec811d1fd
This reverts commit 28279e13f2
.
17 lines
410 B
C++
17 lines
410 B
C++
#pragma once
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wambiguous-reversed-operator"
|
|
#endif
|
|
|
|
#include <s2/s2latlng.h> // Y_IGNORE
|
|
#include <s2/s2cell_id.h> // Y_IGNORE
|
|
#include <s2/s2point.h> // Y_IGNORE
|
|
#include <s2/s2latlng_rect.h> // Y_IGNORE
|
|
#include <s2/s2cap.h> // Y_IGNORE
|
|
#include <s2/s1angle.h> // Y_IGNORE
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|