Fix variable names and split long line

This commit is contained in:
King_DuckZ 2022-04-21 22:57:42 +02:00
parent b2d1b92c36
commit dfb3514ffc

View file

@ -68,7 +68,10 @@ public:
bool is_static, bool is_static,
const char* signature_ptr 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 module(module_ptr);
std::string_view class_name(class_name_ptr); std::string_view class_name(class_name_ptr);
std::string_view signature(signature_ptr); std::string_view signature(signature_ptr);