Is cppkiteconnect is support c++ version 20 ??

smv
Current version is working fine with C++ 17 but if I have to upgrade to C++ 20 then it is possible ??
  • rakeshr
    if I have to upgrade to C++ 20 then it is possible ??
    Yes, it should be working fine.
  • Achilles
    Achilles edited September 2
    I tried to update C++20 but it has a problem. The error is as below:

    error: call to consteval function 'fmt::basic_format_string &>>::basic_format_string, 0>' is not a constant expression

    This is coming from below function:

    inline string kite::loginURL() const {
    return FMT(loginUrlFmt, "api_key"_a = key);
    };

    Possible solution could be providing constant string.
Sign In or Register to comment.