commit | 9cf7f66c519b90beb0dd5cb91c25cacd6b7f17ab | [log] [tgz] |
---|---|---|
author | Ryan Prichard <rprichard@google.com> | Tue Aug 30 14:28:42 2022 -0700 |
committer | Ryan Prichard <rprichard@google.com> | Tue Aug 30 17:35:03 2022 -0700 |
tree | 6875b27d84a4feb7b65a34c545bad7599f88e8d9 | |
parent | 57df6d99f8714b86489874ba267278532ff88ece [diff] |
Add missing assert.h and functional includes Bug: http://b/175635923 Test: treehugger Change-Id: Ib062da6888e560fed3abd389dad3dfbf4cb4f3fa
diff --git a/keystore2/src/crypto/crypto.cpp b/keystore2/src/crypto/crypto.cpp index 6de3be7..7feeaff 100644 --- a/keystore2/src/crypto/crypto.cpp +++ b/keystore2/src/crypto/crypto.cpp
@@ -18,6 +18,7 @@ #include "crypto.hpp" +#include <assert.h> #include <log/log.h> #include <openssl/aes.h> #include <openssl/ec.h>
diff --git a/keystore2/src/crypto/include/certificate_utils.h b/keystore2/src/crypto/include/certificate_utils.h index cad82b6..13d3ef0 100644 --- a/keystore2/src/crypto/include/certificate_utils.h +++ b/keystore2/src/crypto/include/certificate_utils.h
@@ -20,6 +20,7 @@ #include <openssl/x509.h> #include <stdint.h> +#include <functional> #include <memory> #include <optional> #include <variant>