Boost singleton trouble
- by Ockonal
Hi guys, I have some class which uses boost singleton. It calls some function from own c++ library. This library is written in make file as dependence.
Now I have another singleton class and it should call first singleton class. After this code I got linkers error about undefined references for functions which are used in first singleton.
When I remove calling first singleton class from second the errors remove. Maybe there is something wrong?