Fix alembic build error with MSVC

This commit is contained in:
Ray molenkamp 2017-04-05 10:59:29 -06:00
parent f921442a44
commit 7ae9d092d0
Notes: blender-bot 2023-02-14 07:06:03 +01:00
Referenced by issue #51141, Crash when replacing an Alembic file while blender is open.
1 changed files with 1 additions and 1 deletions

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