79217092

Date: 2024-11-23 04:08:44
Score: 0.5
Natty:
Report link

vector<?> is not in the global namespace. It is in the std namespace, and unless you want to use usings, you are going to have to qualify all references to it. Simply replace all instances of vector<?> that do not have a std:: prefix (such as the one at line 15) with std::vector<?> and that particular error should go away.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Brendan Lynn