I was wondering if anyone knew what this error meant.

Thanks

error LNK2019: unresolved external symbol "public: void __thiscall LinkedList,class std::allocator > >::LocItem *>::decreasekey(class PriorityList,class std::allocator > >::LocItem * const &)" (?decreasekey@?$LinkedList@HPAVLocItem@?$PriorityList@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@@@QAEXABQAVLocItem@?$PriorityList@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@@Z) referenced in function "public: void __thiscall PriorityList,class std::allocator > >::decreasekey(class PriorityList,class std::allocator > >::Locator)" (?decreasekey@?$PriorityList@HV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@@QAEXVLocator@1@@Z)

link|improve this question

0% accept rate
Could you give us some more information? Sample code? – mjboggess Apr 19 '10 at 17:55
feedback

1 Answer

It simply means there is a symbol that was not defined. Check your spelling and make sure it exists and is defined in your code.

MSDN Help page

link|improve this answer
Thanks, but I was wondering if there was anything more specific you could get from it... – jay Apr 18 '10 at 22:14
Looks like LinkedList's decreasekey method? – Joe Apr 18 '10 at 22:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.