blob: 69a5ccb716e34ba8a86a1d49ddcfe5b2679a9601 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "WAVM/ObjectCache/ObjectCache.h"
#include <cstdlib>
using namespace WAVM;
using namespace WAVM::ObjectCache;
OpenResult ObjectCache::open(const char* path,
Uptr maxBytes,
U64 codeKey,
std::shared_ptr<Runtime::ObjectCacheInterface>& outObjectCache)
{
std::abort();
}
|