Browse Source
Merge pull request #12417 from liamwhite/arm64-gcc-fix
nce: hide shadowing warnings from dynarmic headers
pull/15/merge
Fernando S
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
2 deletions
-
src/core/arm/nce/interpreter_visitor.cpp
-
src/core/arm/nce/visitor_base.h
|
|
|
@ -5,8 +5,6 @@ |
|
|
|
#include "common/bit_cast.h"
|
|
|
|
#include "core/arm/nce/interpreter_visitor.h"
|
|
|
|
|
|
|
|
#include <dynarmic/frontend/A64/decoder/a64.h>
|
|
|
|
|
|
|
|
namespace Core { |
|
|
|
|
|
|
|
template <u32 BitSize> |
|
|
|
|
|
|
|
@ -4,9 +4,15 @@ |
|
|
|
|
|
|
|
#pragma once |
|
|
|
|
|
|
|
#pragma GCC diagnostic push |
|
|
|
#pragma GCC diagnostic ignored "-Wshadow" |
|
|
|
|
|
|
|
#include <dynarmic/frontend/A64/a64_types.h> |
|
|
|
#include <dynarmic/frontend/A64/decoder/a64.h> |
|
|
|
#include <dynarmic/frontend/imm.h> |
|
|
|
|
|
|
|
#pragma GCC diagnostic pop |
|
|
|
|
|
|
|
namespace Core { |
|
|
|
|
|
|
|
class VisitorBase { |
|
|
|
|