Search found 3 matches

by snipey24
Fri Dec 18, 2009 6:33 am
Forum: Programming Discussion
Topic: errorLNK2019 - I need some help!
Replies: 6
Views: 553

Re: errorLNK2019 - I need some help!

Haha thanks for the info! I understand quite a lot more about inline functions now. Also, I found a solution to the problem that I initially posted about... I realised that I had to include the .cpp/.inl file instead of the header file when using inline functions. Thanks to all who had taken the tim...
by snipey24
Fri Dec 18, 2009 3:06 am
Forum: Programming Discussion
Topic: errorLNK2019 - I need some help!
Replies: 6
Views: 553

Re: errorLNK2019 - I need some help!

Hey guys I realised what the problem was... the functions were inline!
When I removed the inline keyword from the functions, the project built just fine.
Can you guys advise me on how to add inline functions to a project and have it build?
by snipey24
Thu Dec 17, 2009 7:40 pm
Forum: Programming Discussion
Topic: errorLNK2019 - I need some help!
Replies: 6
Views: 553

errorLNK2019 - I need some help!

Hi guys I'm rather new to Visual Studio 2008 and C++. Recently, I was coding some classes for a 3D vector and 4x4 matrices. I wanted to test the operator overloading for multiplication between a vector and a matrix, so I wrote a MessageBox function within WinMain to output the x-coordinate of the re...