2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-17 09:51:21 +00:00

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 <athena/Types.hpp>
#include <fmt/ostream.h> #include <fmt/ostream.h>
#include <logvisor/logvisor.hpp> #include <logvisor/logvisor.hpp>
#include <xxhash/xxhash.h>
namespace hecl::blender { namespace hecl::blender {
using namespace std::literals; using namespace std::literals;

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "Compilers.hpp" #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 #define HECL_RUNTIME 1

View File

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

View File

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