Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlazydodo <github@lazydodo.com>2017-04-05 19:59:29 +0300
committerlazydodo <github@lazydodo.com>2017-04-05 19:59:29 +0300
commit7ae9d092d0d3e3279a0dff6940e46e314cf42ec0 (patch)
tree7f56d4b289299c018ffbb102b207e914e3e34bb5 /source/blender/alembic
parentf921442a441abbb458ed540f55c24372971acff7 (diff)
Fix alembic build error with MSVC
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_util.cc b/source/blender/alembic/intern/abc_util.cc
index f82b07e91fb..aa95180dfe2 100644
--- a/source/blender/alembic/intern/abc_util.cc
+++ b/source/blender/alembic/intern/abc_util.cc
@@ -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