one_example.h
#include "two_example.h"
using foo = int;
void bar(foo);
two_example.h
#include "one_example.h"
void baz(foo);
error: unknown type name 'qualIndex'
Как правильно это решить?
one_example.h
#include "two_example.h"
using foo = int;
void bar(foo);
two_example.h
#include "one_example.h"
void baz(foo);
error: unknown type name 'qualIndex'
Как правильно это решить?