mp: rename mp.h to mp/function_info.h

This commit is contained in:
MerryMage 2018-07-25 11:28:36 +01:00
parent 0921678edb
commit 1edd0125b2
6 changed files with 13 additions and 11 deletions

View file

@ -12,7 +12,7 @@
#include "common/assert.h"
#include "common/bit_util.h"
#include "common/mp.h"
#include "common/mp/function_info.h"
namespace Dynarmic::Decoder {
namespace detail {
@ -150,7 +150,7 @@ public:
*/
template<typename FnT>
static auto GetMatcher(FnT fn, const char* const name, const char* const bitstring) {
constexpr size_t args_count = mp::FunctionInfo<FnT>::args_count;
constexpr size_t args_count = Common::mp::FunctionInfo<FnT>::args_count;
using Iota = std::make_index_sequence<args_count>;
const auto [mask, expect] = GetMaskAndExpect(bitstring);