...
class Andere;
class Klasse {
public:
Klasse() : bc(NULL, NULL){
}
private:
std::pair<Andere*, Andere*> bc;
};
...
Why could the above fail? Right, because NULL is not of type class Andere. (That works on the other compilers we have...)
...
class Andere;
class Klasse {
public:
Klasse() : bc(NULL, NULL){
}
private:
std::pair<Andere*, Andere*> bc;
};
...