compilation fixes

metadata
Wenzel Jakob 2010-10-11 14:00:14 -04:00
parent ac4fa10d5d
commit e0a1720581
1 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@
#include <mitsuba/core/fresolver.h>
#include <mitsuba/core/properties.h>
#include <mitsuba/core/fstream.h>
#include <mitsuba/core/timer.h>
#include <ply/ply_parser.hpp>
#include <tr1/functional>
@ -367,7 +368,7 @@ void PLYLoader::loadPLY(const fs::path &path) {
Log(EInfo, "\"%s\": Loaded " SIZE_T_FMT " triangles, " SIZE_T_FMT
" vertices (%s, %i ms).", m_name.c_str(), m_triangleCount, m_vertexCount,
memString(sizeof(uint32_t) * m_triangleCount * 3 + sizeof(Vertex) * m_vertexCount).str(),
memString(sizeof(uint32_t) * m_triangleCount * 3 + sizeof(Vertex) * m_vertexCount).c_str(),
timer->getMilliseconds());
}