You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We'd like to get rid of typedef in favor of using, which has a much nicer syntax, while having the exact same functionality. So we'd like ToLua to support this as well.
using AString = std::string;
This should be fairly easy to implement, by tweaking or reusing the typedef handler.
The text was updated successfully, but these errors were encountered:
We'd like to get rid of
typedef
in favor ofusing
, which has a much nicer syntax, while having the exact same functionality. So we'd like ToLua to support this as well.using AString = std::string;
This should be fairly easy to implement, by tweaking or reusing the
typedef
handler.The text was updated successfully, but these errors were encountered: