Open aboelens opened 1 month ago
In one of the examples it is mentioned that:
/**
However, the type of I get is:
auto x = easy_.get_info(); std::cout << "Type of x: " << typeid(x.get()).name() << std::endl;
Type of x: class std::basic_string<char,struct std::char_traits,class std::allocator >
instead of a std::pair. How do I get just the element requested?
Thanks,
Arnout
In one of the examples it is mentioned that:
/**
However, the type of I get is:
auto x = easy_.get_info();
std::cout << "Type of x: " << typeid(x.get()).name() << std::endl;
Type of x: class std::basic_string<char,struct std::char_traits,class std::allocator >
instead of a std::pair. How do I get just the element requested?
Thanks,
Arnout