mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-17 07:51:21 +00:00
Minor compile fixes
This commit is contained in:
parent
ff7e95546b
commit
e12e0057c3
@ -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;
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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 */
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user