We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebe0788 commit f118f43Copy full SHA for f118f43
cpp/RAT2/callCppFunction.cpp
@@ -19,6 +19,7 @@
19
#include <algorithm>
20
#include <cmath>
21
#include <functional>
22
+#include <iostream>
23
24
// Function Definitions
25
namespace RAT
@@ -53,7 +54,7 @@ namespace RAT
53
54
if (loop_ub - 1 >= 0) {
55
std::copy(&pointer_data[0], &pointer_data[loop_ub], &b_pointer_data[0]);
56
}
-
57
+ std::cout << "convertString2HandlePtr: " << &b_pointer_data[0] << " " << std::string(&b_pointer_data[0]) << std::endl;
58
callbackHandle = convertString2HandlePtr<CallbackInterface>(&b_pointer_data
59
[0]);
60
callback = std::mem_fn(&ClassHandle<CallbackInterface>::ptr)(callbackHandle);
0 commit comments