diff options
author | Tomasz Frydrych <[email protected]> | 2017-05-01 15:03:52 +0200 |
---|---|---|
committer | Tomasz Frydrych <[email protected]> | 2017-05-01 15:03:52 +0200 |
commit | 87c0fae706140b0a2a7a3fda9dd813474172fa2a (patch) | |
tree | 28930efab4d290dcebb89666d46050edd06703fd /src/tests/unit_ecdh.cpp | |
parent | 29cc6bebe132a34f882d450b35a69bf71bb3e27b (diff) |
Reformat code with astyle + fix code style
Diffstat (limited to 'src/tests/unit_ecdh.cpp')
-rw-r--r-- | src/tests/unit_ecdh.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/unit_ecdh.cpp b/src/tests/unit_ecdh.cpp index 1f2786440..8489d00d4 100644 --- a/src/tests/unit_ecdh.cpp +++ b/src/tests/unit_ecdh.cpp @@ -10,8 +10,8 @@ #include "tests.h" #if defined(BOTAN_HAS_ECDH) - #include <botan/pubkey.h> - #include <botan/ecdh.h> + #include <botan/pubkey.h> + #include <botan/ecdh.h> #endif namespace Botan_Tests { @@ -38,7 +38,7 @@ class ECDH_Unit_Tests : public Test std::vector<std::string> params = { "secp256r1", "secp384r1", "secp521r1", "brainpool256r1" }; - for(auto&& param : params) + for(auto const& param : params) { try { |