Commit b1157446 by Christoph Cullmann Committed by GitHub

fix MSVC warning 4245: conversion signed => unsigned during initialization (#678)

parent d85783fd
...@@ -250,8 +250,8 @@ namespace memory_internal { ...@@ -250,8 +250,8 @@ namespace memory_internal {
// type, which is non-portable. // type, which is non-portable.
template <class Pair, class = std::true_type> template <class Pair, class = std::true_type>
struct OffsetOf { struct OffsetOf {
static constexpr size_t kFirst = -1; static constexpr size_t kFirst = static_cast<size_t>(-1);
static constexpr size_t kSecond = -1; static constexpr size_t kSecond = static_cast<size_t>(-1);
}; };
template <class Pair> template <class Pair>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment