diff options
author | Jack Lloyd <[email protected]> | 2018-09-10 19:19:19 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-10-01 12:53:53 -0400 |
commit | 8eb900731da945d276f723534af09592213ee582 (patch) | |
tree | d080c6fd2ca760796b522d21288b0b4bfc0b6e65 /src/tests/test_x509_path.cpp | |
parent | a792728e8941b62761052f5e0d288ba13a016c77 (diff) |
Remove support for Visual C++ 2013
Closes GH #1557
Diffstat (limited to 'src/tests/test_x509_path.cpp')
-rw-r--r-- | src/tests/test_x509_path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_x509_path.cpp b/src/tests/test_x509_path.cpp index 90dd7e675..57f2d8602 100644 --- a/src/tests/test_x509_path.cpp +++ b/src/tests/test_x509_path.cpp @@ -580,8 +580,8 @@ std::vector<Test::Result> BSI_Path_Validation_Tests::run() */ struct random_bit_generator { using result_type = size_t; - static BOTAN_CONSTEXPR result_type min() { return 0; } - static BOTAN_CONSTEXPR result_type max() { return std::numeric_limits<size_t>::max(); } + static constexpr result_type min() { return 0; } + static constexpr result_type max() { return std::numeric_limits<size_t>::max(); } result_type operator()() { size_t s; |