From b16bae42dfd81f01dea3ab9bf6e8fd03d1e3a810 Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 17 Jun 2020 21:53:34 +0300 Subject: [PATCH] Fix CE. GitOrigin-RevId: e1b70566e852145961f740026ac5134b4a0f9278 --- benchmark/bench_crypto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/bench_crypto.cpp b/benchmark/bench_crypto.cpp index b94402aec..a4482f59b 100644 --- a/benchmark/bench_crypto.cpp +++ b/benchmark/bench_crypto.cpp @@ -24,6 +24,7 @@ #include static constexpr int DATA_SIZE = 8 << 10; +static constexpr int SHORT_DATA_SIZE = 64; class SHA1Bench : public td::Benchmark { public: @@ -192,7 +193,6 @@ class AesCbcBench : public td::Benchmark { template class AesIgeShortBench : public td::Benchmark { public: - static constexpr int SHORT_DATA_SIZE = 64; alignas(64) unsigned char data[SHORT_DATA_SIZE]; td::UInt256 key; td::UInt256 iv;