Ticket #3556: program_options-explicit-braces.patch

File program_options-explicit-braces.patch, 633 bytes (added by mloskot <mateusz@…>, 13 years ago)

Patch with missing braces to avoid ambiguous else clause

  • libs/program_options/src/options_description.cpp

     
    7272            if (approx)
    7373            {
    7474                if (m_long_name.find(option) == 0)
     75                {
    7576                    if (m_long_name == option)
    7677                        result = full_match;
    7778                    else
    7879                        result = approximate_match;
     80                }
    7981            }
    8082            else
    8183            {