Remove tailing "_" in constructor arguments

This commit is contained in:
ReinUsesLisp 2018-10-17 03:44:48 -03:00
parent 0485e1877c
commit c0aaf8989e
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;