473,566 Members | 2,784 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

None line Non pure Virtual Function error

4 New Member
Hi,

While compiling my source through make file, I recieve the below error:

__RTTI__1nJTPro perty4nJRWCStri ng___ ../../../commonServices/lib/libCommonServic es.a(ConfigFaci lity.o)
void RW_PMapAssoc<st d::map<RWCStrin g*,SQLDataSourc e*,rw_deref_com pare<std::less< RWCString>,RWCS tring>,std::all ocator<SQLDataS ource*> >,RWTPtrMap<RWC String,SQLDataS ource,std::less <RWCString>,std ::allocator<SQL DataSource*> >,RWCString,SQL DataSource,std: :less<RWCString > >::clearAndDest roy() ../../../commonServices/lib/libCommonServic es.a(DBAdapter. o)
rw_slist<RWCStr ing,std::alloca tor<RWCString> >::rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
rw_slist<RWCStr ing,std::alloca tor<RWCString> >::~rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
rw_slist<RWCStr ing,std::alloca tor<RWCString> >&RW_VBase<rw_s list<RWCString, std::allocator< RWCString> >,RWTValSlist<R WCString,std::a llocator<RWCStr ing> > >::std() ../../../commonServices/lib/libCommonServic es.a(ConfigPars er.o)
const std::vector<Rea ctorEvent>&RW_V Base<std::vecto r<ReactorEvent> ,RWTValSortedVe ctor<ReactorEve nt,std::less<Re actorEvent>,std ::allocator<Rea ctorEvent> > >::std()const ../../../libCommon/lib/libCommon.a(Rea ctor.o)
__rwstd::__rb_t ree<RWCString*, std::pair<RWCSt ring*const,Abst ractProperty*>, __rwstd::__sele ct1st<std::pair <RWCString*cons t,AbstractPrope rty*>,RWCString *>,rw_deref_com pare<std::less< RWCString>,RWCS tring>,std::all ocator<Abstract Property*> >::iterator __rwstd::__rb_t ree<RWCString*, std::pair<RWCSt ring*const,Abst ractProperty*>, __rwstd::__sele ct1st<std::pair <RWCString*cons t,AbstractPrope rty*>,RWCString *>,rw_deref_com pare<std::less< RWCString>,RWCS tring>,std::all ocator<Abstract Property*> >::erase(__rwst d::__rb_tree<RW CString*,std::p air<RWCString*c onst,AbstractPr operty*>,__rwst d::__select1st< std::pair<RWCSt ring*const,Abst ractProperty*>, RWCString*>,rw_ deref_compare<s td::less<RWCStr ing>,RWCString> ,std::allocator <AbstractProper ty*> >::iterator) ../../../commonServices/lib/libCommonServic es.a(ConfigFaci lity.o)
void std::__advance< std::list<RWTVa lVector<RWCStri ng> >::iterator,uns igned long>(__type_0& ,__type_1,std:: bidirectional_i terator_tag) ../../../libCommon/lib/libCommon.a(Con figFileReader.o )
void RW_PMapAssoc<st d::map<RWCStrin g*,DBAdapter*,r w_deref_compare <std::less<RWCS tring>,RWCStrin g>,std::allocat or<DBAdapter*> >,RWTPtrMap<RWC String,DBAdapte r,std::less<RWC String>,std::al locator<DBAdapt er*> >,RWCString,DBA dapter,std::les s<RWCString> >::clearAndDest roy() ../../../commonServices/lib/libCommonServic es.a(DBAdapterM anager.o)
RWDBConnection& rw_hashmap<int, RWDBConnection, DBAdapterManage r::NumberHash,D BAdapterManager ::NumberEqual,s td::allocator<i nt> >::operator[](const int&) ../../../commonServices/lib/libCommonServic es.a(DBAdapterM anager.o)
rw_slist<int,st d::allocator<in t> >::rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
rw_slist<int,st d::allocator<in t> >::~rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
__RTTI__1nJTPro perty4Ci__ ../../../commonServices/lib/libCommonServic es.a(ConfigFaci lity.o)
RWTFunctor0MImp <DBAdapterManag er,void>::__vtb l ../../../commonServices/lib/libCommonServic es.a(DBAdapterM anager.o)
[Hint: try checking whether the first non-inlined, non-pure virtual function of class RWTFunctor0MImp <DBAdapterManag er,void> is defined]

Request help on this issue

Regards,
hp
Feb 6 '09 #1
2 4063
newb16
687 Contributor
Hint: try checking whether the first non-inlined, non-pure virtual function of class RWTFunctor0MImp <DBAdapterManag er,void> is defined
Wow. It can issue hint now on this weird vtable link error. The hint is good - did you follow it?
Feb 6 '09 #2
JosAH
11,448 Recognized Expert MVP
I suspect that the OP didn't post the first part of this error message blabber ...

kind regards,

Jos
Feb 6 '09 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

9
46577
by: Dario | last post by:
This is a technical C++ post regarding the Microsoft runtime error R6025 Pure Virtual Function Call that sometime occurs in programs compiled with Microsoft Visual C++ 6.0. Please consider the following simple illegal C++ program: class Listener { public: virtual void onEvent(int n) = 0;
11
4336
by: santosh | last post by:
Hello, I was going through the Marshal Cline's C++ FAQ-Lite. I have a doubt regarding section 33.10. Here he is declaring a pure virtual destructor in the base class. And again defining it inline. Like this.
37
4127
by: WittyGuy | last post by:
Hi, I wonder the necessity of constructor and destructor in a Abstract Class? Is it really needed? ? Wg http://www.gotw.ca/resources/clcm.htm for info about ]
10
2963
by: PengYu.UT | last post by:
Hi, A pure function is called in the base function constructor. It generate a run time error: "pure virtual method called". My problem is that class A have some derived classes. I want A's constructor change its behaviour accounting to the derived class. I tried to make A::fun() not pure virtual but virtual. It doesn't generate any...
3
1553
by: Adriano Coser | last post by:
Hi. I'm declaring a property on a base class that is represented by a pure virtual function. Something like this: public: __declspec( property( get=GetWidth ) ) int Width; virtual int GetWidth() = 0; I'm implementing GetWidth in all subclasses, but I got the following linker error:
3
4582
by: Dmitry Prokoptsev | last post by:
Hello, I need to write a class for exceptions which can be thrown, caught, stored and thrown once again. I have written the following code: --- begin --- #include <string> class Exception { public:
10
4779
by: John Goche | last post by:
Hello, page 202 of Symbian OS Explained by Jo Stichbury states "All virtual functions, public, protected or private, should be exported" then page 203 states "In the rare cases where a pure virtual function body
10
2080
by: Rahul | last post by:
Hi, I tried to create a abstract class by having a non-virtual member function as pure, but i got a compilation error saying "only virtual member functions can be pure"... I'm trying to think the reason behind this restriction... i just want to want a base class to be abstract so as to avoid object slicing into the base type from derived...
13
7244
by: Mike -- Email Ignored | last post by:
Is a pure virtual function in allowed in a template base class? In any case, I have one working. Am I skating on thin ice? Thanks, Mike.
0
7666
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7584
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7644
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7951
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5484
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3643
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1201
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
925
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.