Commit 3e09d2ba authored by Christopher Dykes's avatar Christopher Dykes Committed by Facebook Github Bot

Fix include ordering for OpenSSLPtrTypes.h

Summary: When including OpenSSL on Windows, the portability header must be included before including any OpenSSL headers.

Reviewed By: yfeldblum

Differential Revision: D4856376

fbshipit-source-id: a8e6533b2ba3c003314ae2426605031fa67be05f
parent 3e0c28fd
......@@ -18,6 +18,9 @@
#include <glog/logging.h>
// This needs to be before any OpenSSL includes.
#include <folly/portability/OpenSSL.h>
#include <openssl/asn1.h>
#include <openssl/bio.h>
#include <openssl/bn.h>
......@@ -32,7 +35,6 @@
#include <openssl/x509.h>
#include <folly/Memory.h>
#include <folly/portability/OpenSSL.h>
namespace folly {
namespace ssl {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment