I need a bit of help here: when using g++ 4.1 to build my code, there was no error regarding "reference to class is ambiguous". It only happens when using g++4.5.2 to compile the same code, and here is the code fragment:
#include "tlm_utils/simple_initiator_socket.h"
using tlm_utils::simple_initiator_socket;
class HvEcu : public sc_module {
public:
......
simple_initiator_socket<HvEcu> initiator_socket;
//object instantiated here, also problem happend here....
......
};
I am really not sure why this would happen as syntax for namespace is valid for sure. There is a fix to get rid of that message,and this is instead of "using tlm_utils::simple_initiator_socket;" just put "tlm_utils::simple_initiator_socket initiator_socket;" in the body of class shown above. However I don't see why the above code does not work given the only change is compiler version.
tlm_utils::simple_initatior_socket<HvEco>as the type of the field inside the class? – Tom Wijsman Nov 16 '12 at 0:45