From 2e99cc7c31025aa74456d9570b56731b0546b8c3 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Wed, 19 Jun 2024 18:19:59 -0400 Subject: [PATCH] xo-jit: minor: fix convention (stray _ prefix on format param) --- include/xo/jit/Jit.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/xo/jit/Jit.hpp b/include/xo/jit/Jit.hpp index feb78652..1847084a 100644 --- a/include/xo/jit/Jit.hpp +++ b/include/xo/jit/Jit.hpp @@ -62,9 +62,9 @@ namespace xo { public: Jit(std::unique_ptr 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(); }),