Obsolete Members for <QPair>

The following members of class <QPair> are deprecated. They are provided to keep old source code working. We strongly advise against using them in new code.

Functions

(deprecated) decltype(auto) qMakePair(T1 &&value1, T2 &&value2)

Function Documentation

[constexpr noexcept(...), deprecated] template <typename T1, typename T2> decltype(auto) qMakePair(T1 &&value1, T2 &&value2)

This function is deprecated. We strongly advise against using it in new code.

qMakePair forwards its arguments to std::make_pair, and returns the resulting std::pair. It is provided for backwards compatibility. Use std::make_pair directly instead.

Note: This function is noexcept when noexcept(std::make_pair(std::forward<T1>(value1), std::forward<T2>(value2))) is true.

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.