ICU-22920 Avoid CTAD in Formattable's constructor. NFC

This line uses CTAD on `pair`, when every other place in the codebase
uses a function call to `make_pair` (and no other place uses CTAD on
any class template at all). Assume this was unintentional, and fix it.

    warning: class template argument deduction is incompatible with
    C++ standards before C++17; for compatibility, use explicit type
    name 'std::pair<const Formattable *, int>'
    (aka 'pair<const icu_77::message2::Formattable *, int>') [-Wctad]
          Formattable(const Formattable* arr, int32_t len) : contents(std::pair(arr, len)) {}
                                                                      ^~~~~~~~~
This commit is contained in:
Arthur O'Dwyer 2025-01-24 12:15:05 -05:00
parent ba4d4d3ac2
commit b9ccc39a41

View file

@ -389,7 +389,7 @@ namespace message2 {
* @internal ICU 75 technology preview
* @deprecated This API is for technology preview only.
*/
Formattable(const Formattable* arr, int32_t len) : contents(std::pair(arr, len)) {}
Formattable(const Formattable* arr, int32_t len) : contents(std::make_pair(arr, len)) {}
/**
* Object constructor.
*