Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
800 views

C++ - No match for 'operator=' when compiling using GCC

I recently tried building my own shared and weak pointers. Code that compiles using Visual Studio doesn't compile in GCC (4.5.0) with the following error: main.cpp: In function 'int main()': ...
0
votes
1answer
153 views

Linked List no match for operator* compiler error

I'm trying to make a basic C++ program using objects that accepts a hex value into a linked list, and allows the user to add/multiply the values in the list. The problem is that I'm getting a compiler ...
0
votes
5answers
4k views

C++ Error: No Match for Call

I'm trying to compile the following code in C++ string initialDecision () { char decisionReviewUpdate; cout << "Welcome. Type R to review, then press enter." << endl; cin >> ...
0
votes
1answer
392 views

How to map a set of objects in Hibernate without primary keys being equally named?

I have a domain object class that represents a table. This class has an association to another table, but the source class' property is not named the same as the target class' property, and I'm not ...