mirror of https://github.com/AxioDL/metaforce.git
Minor compile fixes
This commit is contained in:
parent
ff7e95546b
commit
e12e0057c3
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "MeshOptimizer.hpp"
|
||||
#include <numeric>
|
||||
#include <cfloat>
|
||||
#include <cmath>
|
||||
|
||||
namespace hecl::blender {
|
||||
|
|
Loading…
Reference in New Issue