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 {
|
||||
|
||||
LiteralString::LiteralString(const std::string& string_) : string(string_) {
|
||||
LiteralString::LiteralString(const std::string& string) : string(string) {
|
||||
operand_type = OperandType::String;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
namespace Sirit {
|
||||
|
||||
Stream::Stream(std::vector<u8>& bytes_) : bytes(bytes_) {}
|
||||
Stream::Stream(std::vector<u8>& bytes) : bytes(bytes) {}
|
||||
|
||||
Stream::~Stream() = default;
|
||||
|
||||
|
|
Loading…
Reference in a new issue