LINUX.ORG.RU

История изменений

Исправление BceM_IIpuBeT, (текущая версия) :

a.hpp:

#pragma once
class A
{
    class B;
    ...
}

b.hpp:

#pragma once
#include "a.hpp"
class A::B
{
    ...
}

Исходная версия BceM_IIpuBeT, :

a.hpp:

#pragma once
class A
{
    class B;
}

b.hpp:

#pragma once
#include "a.hpp"
class A::B
{
    ...
}