Replace fmt::internal::make_unsigned with std::make_unsigned

This commit is contained in:
Victor Zverovich
2017-09-04 11:41:15 -07:00
parent 8a2bc0ab1b
commit 0fbd846561
5 changed files with 17 additions and 25 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ TEST(OStreamTest, WriteToOStreamMaxSize) {
const char *data = 0;
std::size_t size = max_size;
do {
typedef fmt::internal::make_unsigned<std::streamsize>::type UStreamSize;
typedef std::make_unsigned<std::streamsize>::type UStreamSize;
UStreamSize n = std::min<UStreamSize>(
size, fmt::internal::to_unsigned(max_streamsize));
EXPECT_CALL(streambuf, xsputn(data, static_cast<std::streamsize>(n)))