![]() |
.. (לתיקייה המכילה) | |
Eclipse is saying I have an error in a line which obviously has nothing wrong with it! What is happening? | |
Eclipse is still a little testy sometimes for C++, especially when working with templates. If you think Eclipse is wrong about something, try cleaning the project and recompiling it (Project->Clean). If the error persists, its not eclipse's fault. |
I'm getting an error saying a certain function is not implemented, however I did implement it! What might cause this? | |
There are two possible causes: a) The declaration and the implementation don't match. In this case, although the implementation exists, the compiler doesn't connect it with the declaration. b) You are using template functions, and you placed the implementation in the cpp file. Template functions and classes must be placed entirely in the header file (you may read why on the tutorial about templates). |