compilation error fix

This commit is contained in:
Rajkumar 2022-04-13 19:04:16 -07:00
parent 3211a47f7b
commit f5c224f9fe
2 changed files with 4 additions and 3 deletions

View File

@ -151,7 +151,6 @@ endif()
add_contrib (sqlite-cmake sqlite-amalgamation)
add_contrib (s2geometry-cmake s2geometry)
add_contrib (boringssl-cmake boringssl)
# Put all targets defined here and in subdirectories under "contrib/<immediate-subdir>" folders in GUI-based IDEs.
# Some of third-party projects may override CMAKE_FOLDER or FOLDER property of their targets, so they would not appear

View File

@ -16,8 +16,10 @@
#include <base/range.h>
#include <boost/algorithm/string/predicate.hpp>
#include <base/insertAtEnd.h>
#include <openssl/crypto.h>
#include <openssl/rand.h>
#if USE_SSL
# include <openssl/crypto.h>
# include <openssl/rand.h>
#endif
namespace DB
{