Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed compile error related to std::string in JSONOutputArchive #717

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Sep 26, 2021

  1. Fixed compile error related to std::string in JSONOutputArchive

    JSONOutputArchive expected an std::string param to be passed saveValue().
    This caused the compilation to fail when the more generic std::basic_string was passed and not an std::string.
    This fix changes the signature of saveValue to expect an std::basic_string
    Bouloulou1138 committed Sep 26, 2021
    Configuration menu
    Copy the full SHA
    e8e3768 View commit details
    Browse the repository at this point in the history
  2. Fixed compile error related to std::string in JSONOutputArchive

    JSONOutputArchive expected an std::string param to be passed to loadValue().
    This caused the compilation to fail when the more generic std::basic_string was passed and not an std::string.
    This fix changes the signature of loadValue to expect an std::basic_string
    Bouloulou1138 committed Sep 26, 2021
    Configuration menu
    Copy the full SHA
    d6d7c05 View commit details
    Browse the repository at this point in the history