From 8e949c5c91e25b5bf14608518600205ba1c654c5 Mon Sep 17 00:00:00 2001 From: Lenny Maiorani Date: Sun, 25 Jul 2021 14:00:02 -0600 Subject: [PATCH] Tests: Remove unused variables for clang build Problem: - Clang will not build `Tests/LibTLS` due to unused variables. Solution: - Remove the unused variables. --- Tests/LibTLS/TestTLSHandshake.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tests/LibTLS/TestTLSHandshake.cpp b/Tests/LibTLS/TestTLSHandshake.cpp index a38f1f7f3cb..2b8468ce391 100644 --- a/Tests/LibTLS/TestTLSHandshake.cpp +++ b/Tests/LibTLS/TestTLSHandshake.cpp @@ -14,10 +14,6 @@ static const char* ca_certs_file = "./ca_certs.ini"; static int port = 443; -constexpr const char* DEFAULT_DIGEST_SUITE { "HMAC-SHA256" }; -constexpr const char* DEFAULT_CHECKSUM_SUITE { "CRC32" }; -constexpr const char* DEFAULT_HASH_SUITE { "SHA256" }; -constexpr const char* DEFAULT_CIPHER_SUITE { "AES_CBC" }; constexpr const char* DEFAULT_SERVER { "www.google.com" }; static ByteBuffer operator""_b(const char* string, size_t length)