Minor compile fixes

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

View File

@ -35,7 +35,6 @@
#include <athena/Types.hpp>
#include <fmt/ostream.h>
#include <logvisor/logvisor.hpp>
#include <xxhash/xxhash.h>
namespace hecl::blender {
using namespace std::literals;

View File

@ -1,6 +1,6 @@
#pragma once
#include "Compilers.hpp"
extern "C" unsigned long long XXH64(const void* input, size_t length, unsigned long long seed);
#include "../extern/boo/xxhash/xxhash.h"
#define HECL_RUNTIME 1

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 {