diff options
author | Jack Lloyd <[email protected]> | 2022-02-06 14:10:32 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2022-02-06 14:10:32 -0500 |
commit | bf15164d8e48eb2d60b43ad2a599ffe504739286 (patch) | |
tree | b909ba6e5eb8f0edad1761557661f0b42140878b /src/lib/tls/msg_client_hello.cpp | |
parent | 25682391a043c35ee19f4ac3863b6e73d1d80e0f (diff) |
Use C++17's concat namespace feature
Diffstat (limited to 'src/lib/tls/msg_client_hello.cpp')
-rw-r--r-- | src/lib/tls/msg_client_hello.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/tls/msg_client_hello.cpp b/src/lib/tls/msg_client_hello.cpp index bbc75a7de..448d441c3 100644 --- a/src/lib/tls/msg_client_hello.cpp +++ b/src/lib/tls/msg_client_hello.cpp @@ -21,9 +21,7 @@ #include <botan/internal/stl_util.h> #include <chrono> -namespace Botan { - -namespace TLS { +namespace Botan::TLS { enum { TLS_EMPTY_RENEGOTIATION_INFO_SCSV = 0x00FF, @@ -424,5 +422,3 @@ std::vector<uint16_t> Client_Hello::srtp_profiles() const } - -} |