mirror of
https://github.com/yuzu-emu/sirit
synced 2024-11-22 22:03:48 +00:00
Remove tailing "_" in constructor arguments
This commit is contained in:
parent
0485e1877c
commit
c0aaf8989e
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
namespace Sirit {
|
namespace Sirit {
|
||||||
|
|
||||||
LiteralString::LiteralString(const std::string& string_) : string(string_) {
|
LiteralString::LiteralString(const std::string& string) : string(string) {
|
||||||
operand_type = OperandType::String;
|
operand_type = OperandType::String;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
namespace Sirit {
|
namespace Sirit {
|
||||||
|
|
||||||
Stream::Stream(std::vector<u8>& bytes_) : bytes(bytes_) {}
|
Stream::Stream(std::vector<u8>& bytes) : bytes(bytes) {}
|
||||||
|
|
||||||
Stream::~Stream() = default;
|
Stream::~Stream() = default;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue