8 Feb
2010
8 Feb
'10
7:56 p.m.
AMDG Carla Strembicke wrote:
I have it in my header file (Common/Src/shmem.h) where I declare an boost interprocess object.
#include
#include #include using namespace boost::interprocess;
That's probably your problem. It's generally a bad idea to put using directives in header files. If you don't want to type out boost::interprocess:: everywhere, use a namespace alias. In Christ, Steven Watanabe