mirror of
https://github.com/yuzu-emu/sirit.git
synced 2024-11-21 23:25:41 +01:00
Enable -Wshadow and silence warnings
This commit is contained in:
parent
22cc6f6c1b
commit
e1a6729df7
@ -73,6 +73,7 @@ else()
|
||||
-Wno-missing-braces
|
||||
-Wconversion
|
||||
-Wsign-conversion
|
||||
-Wshadow
|
||||
-Werror)
|
||||
endif()
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
|
||||
namespace Sirit {
|
||||
|
||||
LiteralNumber::LiteralNumber(u64 raw, bool is_32)
|
||||
: Operand{OperandType::Number}, raw{raw}, is_32{is_32} {}
|
||||
LiteralNumber::LiteralNumber(u64 raw_, bool is_32_)
|
||||
: Operand{OperandType::Number}, raw{raw_}, is_32{is_32_} {}
|
||||
|
||||
LiteralNumber::~LiteralNumber() = default;
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
|
||||
namespace Sirit {
|
||||
|
||||
LiteralString::LiteralString(std::string string)
|
||||
: Operand{OperandType::String}, string{std::move(string)} {}
|
||||
LiteralString::LiteralString(std::string string_)
|
||||
: Operand{OperandType::String}, string{std::move(string_)} {}
|
||||
|
||||
LiteralString::~LiteralString() = default;
|
||||
|
||||
|
@ -16,8 +16,8 @@
|
||||
|
||||
namespace Sirit {
|
||||
|
||||
Op::Op(spv::Op opcode, std::optional<u32> id, Id result_type)
|
||||
: Operand{OperandType::Op}, opcode(opcode), result_type(result_type), id(id) {}
|
||||
Op::Op(spv::Op opcode_, std::optional<u32> id_, Id result_type_)
|
||||
: Operand{OperandType::Op}, opcode{opcode_}, result_type{result_type_}, id{id_} {}
|
||||
|
||||
Op::~Op() = default;
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
namespace Sirit {
|
||||
|
||||
Operand::Operand(OperandType operand_type) : operand_type{operand_type} {}
|
||||
Operand::Operand(OperandType operand_type_) : operand_type{operand_type_} {}
|
||||
|
||||
Operand::~Operand() = default;
|
||||
|
||||
|
@ -20,7 +20,7 @@ static void WriteSet(Stream& stream, const T& set) {
|
||||
}
|
||||
}
|
||||
|
||||
Module::Module(u32 version) : version(version) {}
|
||||
Module::Module(u32 version_) : version{version_} {}
|
||||
|
||||
Module::~Module() = default;
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
namespace Sirit {
|
||||
|
||||
Stream::Stream(std::vector<u32>& words) : words(words) {}
|
||||
Stream::Stream(std::vector<u32>& words_) : words{words_} {}
|
||||
|
||||
Stream::~Stream() = default;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user