mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 11:46:09 +00:00

There are a handful of standard library types that are intended to support CTAD but don't need any explicit deduction guides to do so. This patch adds a dummy deduction guide to those types to suppress -Wctad-maybe-unsupported (which gets emitted in user code). This is a re-application of the original patch by Eric Fiselier in fcd549a7d828 which had been reverted due to reasons lost at this point. I also added the macro to a few more types. Reviving this patch was prompted by the discussion on https://llvm.org/D133425. Differential Revision: https://reviews.llvm.org/D133535
99 lines
2.3 KiB
C++
99 lines
2.3 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
|
|
|
// <functional>
|
|
|
|
// Make sure that we can use CTAD with operations in <functional>
|
|
|
|
#include <functional>
|
|
|
|
#include "test_macros.h"
|
|
|
|
int main(int, char**) {
|
|
{
|
|
std::plus f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::plus<>);
|
|
}
|
|
{
|
|
std::minus f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::minus<>);
|
|
}
|
|
{
|
|
std::multiplies f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::multiplies<>);
|
|
}
|
|
{
|
|
std::divides f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::divides<>);
|
|
}
|
|
{
|
|
std::modulus f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::modulus<>);
|
|
}
|
|
{
|
|
std::negate f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::negate<>);
|
|
}
|
|
{
|
|
std::bit_and f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::bit_and<>);
|
|
}
|
|
{
|
|
std::bit_not f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::bit_not<>);
|
|
}
|
|
{
|
|
std::bit_or f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::bit_or<>);
|
|
}
|
|
{
|
|
std::bit_xor f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::bit_xor<>);
|
|
}
|
|
{
|
|
std::equal_to f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::equal_to<>);
|
|
}
|
|
{
|
|
std::not_equal_to f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::not_equal_to<>);
|
|
}
|
|
{
|
|
std::less f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::less<>);
|
|
}
|
|
{
|
|
std::less_equal f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::less_equal<>);
|
|
}
|
|
{
|
|
std::greater_equal f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::greater_equal<>);
|
|
}
|
|
{
|
|
std::greater f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::greater<>);
|
|
}
|
|
{
|
|
std::logical_and f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::logical_and<>);
|
|
}
|
|
{
|
|
std::logical_not f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::logical_not<>);
|
|
}
|
|
{
|
|
std::logical_or f;
|
|
ASSERT_SAME_TYPE(decltype(f), std::logical_or<>);
|
|
}
|
|
|
|
return 0;
|
|
}
|