Reply To: console error

Home Forums General Programming console error Reply To: console error

#72898
dnaldoog
Participant
    • Topics: 4
    • Replies: 480
    • Total: 484
    • ★★

    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 6 years, 7 months ago by dnaldoog.
    Ctrlr