E
earthwormgaz
I am trying to add the headers for a library I am using to a namespace
to avert issues with name clashes.
namespace Lib
{
#include <Lib/SomeFile.h>
};
I am finding though that statements to the following effect in that
code are then broken ...
using std::size_t;
The compiler complains that it doesn't know about size_t, I presume
that is because it only knows about Lib::std::size_t.
How can I get out of this?
to avert issues with name clashes.
namespace Lib
{
#include <Lib/SomeFile.h>
};
I am finding though that statements to the following effect in that
code are then broken ...
using std::size_t;
The compiler complains that it doesn't know about size_t, I presume
that is because it only knows about Lib::std::size_t.
How can I get out of this?