Home › Forums › General › Programming › console error › Reply To: console error
September 13, 2017 at 5:34 am
#72898
I found that in the source code headers of version 5.3 there is only:
static void console (const String &arg);
but in version 5.5 there is:
static void console (const String &arg);
static void console (const std::string &arg);
ctrlr/Source/Lua/JuceClasses/LGlobalFunctions.h
so that is probably causing:
ERROR: Ambiguous, candidates:
void console(String const&)
void console(std::string const&)
…but what this change represents, I wouldn’t know.
-
This reply was modified 4 years, 8 months ago by
dnaldoog.