From 795a7e91972250539b7c2d0e0b74e95eca7798cf Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Tue, 19 Feb 2019 20:47:05 -0800 Subject: [PATCH] [mbedtls] include debug.h (#3608) The `` is included in `mbedtls.cpp` file which is needed for `mbedtls_debug_set_threshold()`. --- src/core/crypto/mbedtls.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/crypto/mbedtls.cpp b/src/core/crypto/mbedtls.cpp index ab61ee354..8695ac454 100644 --- a/src/core/crypto/mbedtls.cpp +++ b/src/core/crypto/mbedtls.cpp @@ -33,6 +33,7 @@ #include "mbedtls.hpp" +#include #include #include "common/instance.hpp"