Defcon/hook_lib/asmjit/core/target.cpp
MatrixMMOfficial 9631e4ca40 Initial commit
2023-11-26 08:54:06 -05:00

17 lines
371 B
C++

// This file is part of AsmJit project <https://asmjit.com>
//
// See asmjit.h or LICENSE.md for license and copyright information
// SPDX-License-Identifier: Zlib
#include "../core/api-build_p.h"
#include "../core/target.h"
ASMJIT_BEGIN_NAMESPACE
Target::Target() noexcept
: _environment{},
_cpuFeatures{} {}
Target::~Target() noexcept {}
ASMJIT_END_NAMESPACE