-
Notifications
You must be signed in to change notification settings - Fork 728
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix linker error caused by templating in the conversions.cpp file #718
Fix linker error caused by templating in the conversions.cpp file #718
Conversation
@simwijs let me know if this fix solves your issue - I tested it locally using the cmake flags you mentioned and it seemed to work I think. |
You're fast lol 👍 |
Works beautifully. You have my 🥇 |
@simwijs you give me too much credit 😅 but glad to help out! This is what open source is all about - finding bugs you otherwise would miss and fixing them together. |
@JWhitleyWork friendly ping, fixes a hidden bug in the |
Signed-off-by: Evan Flynn <evan.flynn@apex.ai>
1afe9e6
to
4bf4f4f
Compare
CI is failing, but that has nothing to do with this PR. We'll fix that up separately. This looks like a good fix to me, so merging it in. |
…s-perception#718) Signed-off-by: Evan Flynn <evan.flynn@apex.ai> (cherry picked from commit 0fa817a)
@JWhitleyWork id be happy to! Sorry for causing such a stink with this. |
…s-perception#718) Signed-off-by: Evan Flynn <evan.flynn@apex.ai>
@flynneva Don't worry about it! As long as the outcome is improvement then the journey is always worth it! |
Signed-off-by: Evan Flynn <evan.flynn@apex.ai>
Fixes linker error found by @simwijs on this thread here
Essentially I made the mistake of including template implementations in the .cpp file when they all need to be in the header.
Signed-off-by: Evan Flynn evan.flynn@apex.ai