File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,11 @@ template<class base> inline ClassHandle<base> *convertString2HandlePtr(const cha
6565{
6666
6767 std::cout << " convertString2HandlePtr: " << in << " " << std::string (in) << std::endl;
68- uint64_t value = 105553139052784 ; // stoull(std::string(in));
69- ClassHandle<base> *ptr = reinterpret_cast <ClassHandle<base> *>(value);
70- if (!ptr->isValid ())
71- throw std::invalid_argument (" callback handle is not valid" );
68+ ClassHandle<base> *ptr;
69+ // uint64_t value = 105553139052784; //stoull(std::string(in));
70+ // ClassHandle<base> *ptr = reinterpret_cast<ClassHandle<base> *>(value);
71+ // if (!ptr->isValid())
72+ throw std::invalid_argument (" callback handle is not valid" );
7273 return ptr;
7374}
7475
You can’t perform that action at this time.
0 commit comments