Skip to content

Commit f118f43

Browse files
committed
lk
1 parent ebe0788 commit f118f43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpp/RAT2/callCppFunction.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <algorithm>
2020
#include <cmath>
2121
#include <functional>
22+
#include <iostream>
2223

2324
// Function Definitions
2425
namespace RAT
@@ -53,7 +54,7 @@ namespace RAT
5354
if (loop_ub - 1 >= 0) {
5455
std::copy(&pointer_data[0], &pointer_data[loop_ub], &b_pointer_data[0]);
5556
}
56-
57+
std::cout << "convertString2HandlePtr: " << &b_pointer_data[0] << " " << std::string(&b_pointer_data[0]) << std::endl;
5758
callbackHandle = convertString2HandlePtr<CallbackInterface>(&b_pointer_data
5859
[0]);
5960
callback = std::mem_fn(&ClassHandle<CallbackInterface>::ptr)(callbackHandle);

0 commit comments

Comments
 (0)