forked from boostorg/move
Remove warnings due to size_t -> unsigned conversions
This commit is contained in:
@@ -230,7 +230,7 @@ bool measure_all(std::size_t L, std::size_t NK)
|
||||
boost::movelib::unique_ptr<std::size_t[]> pkeys(new std::size_t[NK ? NK : L]);
|
||||
T *A = pdata.get();
|
||||
std::size_t *Keys = pkeys.get();
|
||||
std::printf("\n - - N: %u, NK: %u - -\n",L,NK);
|
||||
std::printf("\n - - N: %u, NK: %u - -\n", (unsigned)L, (unsigned)NK);
|
||||
|
||||
nanosecond_type prev_clock = 0;
|
||||
nanosecond_type back_clock;
|
||||
|
@@ -251,7 +251,7 @@ bool measure_all(std::size_t L, std::size_t NK)
|
||||
boost::movelib::unique_ptr<std::size_t[]> pkeys(new std::size_t[NK ? NK : L]);
|
||||
T *A = pdata.get();
|
||||
std::size_t *Keys = pkeys.get();
|
||||
std::printf("\n - - N: %u, NK: %u - -\n",L,NK);
|
||||
std::printf("\n - - N: %u, NK: %u - -\n", (unsigned)L, (unsigned)NK);
|
||||
|
||||
nanosecond_type prev_clock = 0;
|
||||
nanosecond_type back_clock;
|
||||
|
Reference in New Issue
Block a user