Skip to content

Commit 4c8214c

Browse files
committed
fix: fix some error
1 parent ece95fa commit 4c8214c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cpp/FOCV_Function.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ jsi::Object FOCV_Function::invoke(jsi::Runtime &runtime, const jsi::Value *argum
8282
auto gamma = args.asNumber(5);
8383
auto dst = args.asMatPtr(6);
8484

85-
string info = *src1.rows + " " + *src1.cols + " " + *src1.type();
86-
string info2 = *src2.rows + " " + *src2.cols + " " + *src2.type();
87-
string out = info1 + " " + info2;
85+
String info1 = *src1.rows + " " + *src1.cols + " " + *src1.type();
86+
String info2 = *src2.rows + " " + *src2.cols + " " + *src2.type();
87+
String out = info1 + " " + info2;
8888

8989
value.setProperty(runtime, "value", out);
9090

0 commit comments

Comments
 (0)