xo-jit: minor: fix convention (stray _ prefix on format param)
This commit is contained in:
parent
c9a061abf0
commit
2e99cc7c31
1 changed files with 2 additions and 2 deletions
|
|
@ -62,9 +62,9 @@ namespace xo {
|
|||
public:
|
||||
Jit(std::unique_ptr<ExecutionSession> xsession,
|
||||
JITTargetMachineBuilder jtmb,
|
||||
DataLayout data_layout_)
|
||||
DataLayout data_layout)
|
||||
: xsession_{std::move(xsession)},
|
||||
data_layout_(std::move(data_layout_)),
|
||||
data_layout_(std::move(data_layout)),
|
||||
mangler_(*this->xsession_, this->data_layout_),
|
||||
object_layer_(*this->xsession_,
|
||||
[]() { return std::make_unique<SectionMemoryManager>(); }),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue