高手来看一下这个问题:Implicit int is not supported in C++
一段代码
#ifndef OamCfgTtIfSs7DbMgr_H
#define OamCfgTtIfSs7DbMgr_H
//---------------------------------------------- include files
#include <OamCfgTtIfDbMgr.h>
// ----------------------------------------------------
class OamCfgTtIfSs7DbMgr : public OamCfgTtIfDbMgr
{
public:
// constructor and destructor
OamCfgTtIfSs7DbMgr() ;
~OamCfgTtIfSs7DbMgr() ;
bool connect (void);
private:
#ifndef ATRIUMX_PORTABLE
//Solaris下编译下面这行出现告警:Implicit int is not supported in C++ 请教一下这是什么问题导致的?怎么解决?
OamCfgTtIfSysConfigfDbMgr (const OamCfgTtIfSs7DbMgr&);
#else /* ATRIUMX_PORTABLE */
OamCfgTtIfSs7DbMgr (const OamCfgTtIfSs7DbMgr&);
#endif /* ATRIUMX_PORTABLE */
OamCfgTtIfSs7DbMgr& operator= (const OamCfgTtIfSs7DbMgr&);
bool enableDataAccess(void);
};
#endif