Fix variable names and split long line
This commit is contained in:
parent
b2d1b92c36
commit
dfb3514ffc
1 changed files with 4 additions and 1 deletions
|
@ -68,7 +68,10 @@ public:
|
|||
bool is_static,
|
||||
const char* signature_ptr
|
||||
) {
|
||||
//std::cout << "VM " << vm << " requested foreign method " << class_name << "::" << signature << " in module " << module << "\n";
|
||||
//std::cout << "VM " << vm << " requested foreign method " <<
|
||||
// class_name_ptr << "::" << signature_ptr <<
|
||||
// " in module " << module_ptr << "\n";
|
||||
|
||||
std::string_view module(module_ptr);
|
||||
std::string_view class_name(class_name_ptr);
|
||||
std::string_view signature(signature_ptr);
|
||||
|
|
Loading…
Reference in a new issue