Compiling without LASH support works fine.main.cpp: In function 'void* thread3(void*)':
main.cpp:213: error: no matching function for call to 'MasterUI::do_save_master(std::string&)'
UI/MasterUI.h:431: note: candidates are: void MasterUI::do_save_master(const char*)
main.cpp:217: error: no matching function for call to 'MasterUI::do_load_master(std::string&)'
UI/MasterUI.h:430: note: candidates are: void MasterUI::do_load_master(const char*)
make[1]: *** [main.o] Error 1
make[1]: Leaving directory '/home/chris/Programs/source/ZynAddSubFX-2.4.0/src'
make: *** [all] Error 2
LASH support broken?
-
- KVRer
- 13 posts since 30 Jul, 2009 from Madison, WI, USA
When I tried to compile ZynAddSubFx v2.4.0 with LASH support under Ubuntu 9.04, I got the following error:
-
- KVRian
- 551 posts since 21 Oct, 2008 from USA
Looking back at the git logs, it looks like Alexis Ballier pointed out this issue.
He did point this out after the 2.4.0 release, so the fix is not in that release, but you should be able to get the new version by checking out git.
or
you should be able to just change:
ui->do_save_master(filename);
to
ui->do_save_master(filename.c_str());
[in main.cpp]
He did point this out after the 2.4.0 release, so the fix is not in that release, but you should be able to get the new version by checking out git.
or
you should be able to just change:
ui->do_save_master(filename);
to
ui->do_save_master(filename.c_str());
[in main.cpp]
-
- KVRer
- Topic Starter
- 13 posts since 30 Jul, 2009 from Madison, WI, USA
That did the trick. Thanks!
-
- KVRian
- 551 posts since 21 Oct, 2008 from USA
You're welcome
