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

Avoid compiler warning in vboxwrapper.cpp #5547

Merged

Commits on Mar 20, 2024

  1. Merge pull request #7 from computezrmle/computezrmle-replace_deprecat…

    …ed_audio
    
    Replace deprecated VBoxManage command
    computezrmle authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    fa96f29 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    1e77e57 View commit details
    Browse the repository at this point in the history
  2. Avoid compiler warning in vboxwrapper.cpp

    Got a compiler warning in vboxwrapper.cpp
    
    vboxwrapper.cpp:684:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::__cxx11::basic_string<char> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
      684 |     for (int i=0; i<pVM->copy_to_shared.size(); ++i) {
          |                   ~^~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Declared i as long unsigned int to avoid it.
    computezrmle authored Mar 22, 2024
    Configuration menu
    Copy the full SHA
    7f3af59 View commit details
    Browse the repository at this point in the history