Trying to sort an array of Integers and after some googling, came across the solution using std::sort
accompanied by this error: namespace "std" has no member "sort"
.
Just to disqalify any qualms that I'm not using the std namespace, here is my header:
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
using namespace std;