mirror of
https://git.suyu.dev/suyu/sirit.git
synced 2026-02-19 08:43:01 +00:00
Remove tailing "_" in constructor arguments
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user