mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
db13ef96d6
* Try to fix ../libs/libglibc-compatibility/glibc-compatibility.c:151: multiple definition of `explicit_bzero' contrib/ssl/crypto/libcrypto.a(explicit_bzero.c.o):../contrib/ssl/crypto/compat/explicit_bzero.c:16: first defined here * Fix ssl init * fix * noncopyable * clean
14 lines
219 B
C++
14 lines
219 B
C++
#pragma once
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
namespace DB
|
|
{
|
|
// http://stackoverflow.com/questions/18315472/https-request-in-c-using-poco
|
|
struct UseSSL : private boost::noncopyable
|
|
{
|
|
UseSSL();
|
|
~UseSSL();
|
|
};
|
|
}
|