mirror of
https://github.com/yuzu-emu/sirit.git
synced 2024-11-26 02:45:43 +01:00
Merge pull request #8 from lioncash/ref
sirit: Add missing reference argument specifier for OpLabel
This commit is contained in:
commit
a8ac2068a6
@ -224,7 +224,7 @@ public:
|
|||||||
Id OpLabel();
|
Id OpLabel();
|
||||||
|
|
||||||
/// The block label instruction: Any reference to a block is through this ref.
|
/// The block label instruction: Any reference to a block is through this ref.
|
||||||
Id OpLabel(const std::string label_name) {
|
Id OpLabel(const std::string& label_name) {
|
||||||
return Name(OpLabel(), label_name);
|
return Name(OpLabel(), label_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user