python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
no match for call to '(std::string {aka std::__cxx11::basic_string<char>}) ()'
I am making a project in C++ and it gives the following error:
in function 'int main()': Line 35; Col 12; [Error] no match for call
to '(std::string {aka std::__cxx11::basic_string}) ()'
This is Lin...
thes_real
Votes: 0
Answers: 2
C++ name lookup inconsistency for template/overloaded functions
I'm building a minimal binary parser/serializer for one of my projects and I got this error that seems inconsistent at first. I have two top functions I want to expose T parse<T>(bytes) and byte...
petoknm
Votes: 0
Answers: 1
Unqualified lookup of operators in standard library templates
namespace N {
struct A {};
template<typename T>
constexpr bool operator<(const T&, const T&) { return true; }
}
constexpr bool operator<(const N::A&, const N:...
user17732522
Votes: 0
Answers: 1
Point of instantiation in complete-class context
template<typename T>
struct A {
using U = typename T::U;
using V = typename T::V; //X
};
struct B {
using U = int;
void f() { A<B> a; } //1
//A<B> a; ...
user17732522
Votes: 0
Answers: 0