2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 15:04:56 +00:00

Minor compile fixes

This commit is contained in:
2019-08-23 16:58:15 -07:00
parent ff7e95546b
commit e12e0057c3
4 changed files with 4 additions and 4 deletions

View File

@@ -313,8 +313,8 @@ Connection::Connection(int verbosityLevel) {
if (!CloseHandle(consoleOutReadTmp))
BlenderLog.report(logvisor::Fatal, fmt("Error with CloseHandle"));
#else
pipe(m_readpipe);
pipe(m_writepipe);
pipe(m_readpipe.data());
pipe(m_writepipe.data());
#endif
/* User-specified blender path */

View File

@@ -1,5 +1,6 @@
#include "MeshOptimizer.hpp"
#include <numeric>
#include <cfloat>
#include <cmath>
namespace hecl::blender {