Fix alembic build error with MSVC

This commit is contained in:
lazydodo
2017-04-05 10:59:29 -06:00
parent f921442a44
commit 7ae9d092d0

View File

@@ -542,7 +542,7 @@ ScopeTimer::~ScopeTimer()
bool SimpleLogger::empty()
{
return m_stream.tellp() == 0ul;
return ((size_t)m_stream.tellp()) == 0ul;
}
std::string SimpleLogger::str() const