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

Fix return types #34

Merged
merged 4 commits into from Feb 17, 2019
Merged

Fix return types #34

merged 4 commits into from Feb 17, 2019

Commits on Feb 7, 2019

  1. Remove const qualifier of return type for std:string and Glib::ustring

    C++11モードではmoveの妨げになるので戻り値のconstを取り除く
    ma8ma committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    5c03549 View commit details
    Browse the repository at this point in the history
  2. Remove const qualifier of return type for std::vector and std::list

    C++11モードではmoveの妨げになるので戻り値のconstを取り除く
    ma8ma committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    09b6bf4 View commit details
    Browse the repository at this point in the history
  3. Remove const reference qualifier for arithmetic types

    算術型の引数と戻り値はconst参照を取り除き値渡し/値返しする
    ma8ma committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    9313fb2 View commit details
    Browse the repository at this point in the history
  4. Remove const qualifier of more return types

    C++11モードではmoveの妨げになるので戻り値のconstを取り除く
    ma8ma committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    ce394da View commit details
    Browse the repository at this point in the history