From da746c6e6766d1ff78f04868bc261d48e7d675a4 Mon Sep 17 00:00:00 2001 From: Daniel Ottiger Date: Mon, 20 Apr 2020 18:53:39 +0200 Subject: [PATCH] SSLClient::set_ca_cert_store: mark as inline (#435) --- httplib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httplib.h b/httplib.h index b31d80a..687f081 100644 --- a/httplib.h +++ b/httplib.h @@ -4756,7 +4756,7 @@ inline void SSLClient::set_ca_cert_path(const char *ca_cert_file_path, if (ca_cert_dir_path) { ca_cert_dir_path_ = ca_cert_dir_path; } } -void SSLClient::set_ca_cert_store(X509_STORE *ca_cert_store) { +inline void SSLClient::set_ca_cert_store(X509_STORE *ca_cert_store) { if (ca_cert_store) { ca_cert_store_ = ca_cert_store; } }