Skip to content

Commit 2ead43b

Browse files
committed
fix renaming error
1 parent 7a00a86 commit 2ead43b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RTLBenchmarkApp/src/BenchMark.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ namespace rtl_bench
103103
{
104104
static rtl::Record rNode = cxx_mirror().getRecord("node").value();
105105
static rtl::Method sendMsg = rNode.getMethod("sendMessage").value();
106-
static rtl::RObject robj = rNode.create<rtl::alloc::Stack>().robj;
106+
static rtl::RObject robj = rNode.create<rtl::alloc::Stack>().rObject;
107107

108108
for (auto _ : state)
109109
{
@@ -148,7 +148,7 @@ namespace rtl_bench
148148
{
149149
static rtl::Record rNode = cxx_mirror().getRecord("node").value();
150150
static rtl::Method getMsg = rNode.getMethod("getMessage").value();
151-
static rtl::RObject robj = rNode.create<rtl::alloc::Stack>().robj;
151+
static rtl::RObject robj = rNode.create<rtl::alloc::Stack>().rObject;
152152

153153
for (auto _ : state)
154154
{

0 commit comments

Comments
 (0)