Lines Matching refs:CT_NonConst
34 assert(Fn::check_call<>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
38 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding()
46 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
50 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding()
58 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
62 assert(Fn::check_call<long &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding()
72 assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
76 assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_RValue))); in test_call_operator_forwarding()
84 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
88 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_RValue))); in test_call_operator_forwarding()
96 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
100 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_RValue))); in test_call_operator_forwarding()
109 const auto Val = CT_LValue | CT_NonConst; in test_argument_forwarding()