Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6df5fa45 authored by Aaron Okano's avatar Aaron Okano Committed by Android (Google) Code Review
Browse files

Merge "Change static const to static constexpr" into main

parents cdbd77a8 3354ccd2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ class PendingRequestPoolTest : public ::testing::Test {

  private:
    // Test timeout is 0.1s.
    static const int64_t TEST_TIMEOUT = 100000000;
    static constexpr int64_t TEST_TIMEOUT = 100000000;

    std::unique_ptr<PendingRequestPool> mPool;
};
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ class PendingRequestPoolTest : public ::testing::Test {

  private:
    // Test timeout is 0.1s.
    static const int64_t TEST_TIMEOUT = 100000000;
    static constexpr int64_t TEST_TIMEOUT = 100000000;

    std::unique_ptr<PendingRequestPool> mPool;
};