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/misc/cryptobox | |
parent | 25682391a043c35ee19f4ac3863b6e73d1d80e0f (diff) |
Use C++17's concat namespace feature
Diffstat (limited to 'src/lib/misc/cryptobox')
-rw-r--r-- | src/lib/misc/cryptobox/cryptobox.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/misc/cryptobox/cryptobox.cpp b/src/lib/misc/cryptobox/cryptobox.cpp index c566d074e..9384f92df 100644 --- a/src/lib/misc/cryptobox/cryptobox.cpp +++ b/src/lib/misc/cryptobox/cryptobox.cpp @@ -15,9 +15,7 @@ #include <botan/internal/loadstor.h> #include <botan/mem_ops.h> -namespace Botan { - -namespace CryptoBox { +namespace Botan::CryptoBox { namespace { @@ -179,5 +177,3 @@ std::string decrypt(const std::string& input, } } - -} |