C/C++ Creating a Class in C++ 2005: Debug Report Error Analysis

  • Thread starter Thread starter splac6996
  • Start date Start date
  • Tags Tags
    Class
AI Thread Summary
The discussion centers around a user encountering a build error while using Microsoft Visual C++ 2005. The error message indicates a mismatch in the argument list for a function, specifically related to the types being passed to a function that expects a different signature. Participants suggest checking the build log for more detailed information about the error and emphasize the importance of posting both the code and the complete error message for better assistance. Additionally, there is a clarification that "C++ 2005" refers to Microsoft Visual C++ 2005, which is an integrated development environment (IDE) rather than a version of the C++ language itself.
splac6996
Messages
37
Reaction score
0
I am using C++ 2005 and trying to create a new class I believe I wrote my program correctly but when I gry to build I get an error back

here is my debug report

1> _Elem=char,
1> _Traits=std::char_traits<char>
1> ]
1> while trying to match the argument list '(std::ostream, void)'
1>Build log was saved at "file://c:\Documents and Settings\DEWAND JONES\My Documents\CSCI 1020\HOMEWORK5.2\HOMEWORK5.2\Debug\BuildLog.htm"
1>HOMEWORK5.2 - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

can some tell me what that error means?
 
Technology news on Phys.org
GCC is cool. Do you use linux at school?

Check

c:\Documents and Settings\DEWAND JONES\My Documents\CSCI 1020\HOMEWORK5.2\HOMEWORK5.2\Debug\BuildLog.htm

It might have more usefull information about your error.
 
There's no such thing as "C++ 2005". You're using the program "Microsoft Visual C++ 2005", which is an IDE and compiler for the C++ programming language.

Usually, people post their code but not their error message, in this case it's the opposite. Posting your code would help. (And the complete error message. You've missed out the very lines where it tell you what problem it have with the code.)
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...

Similar threads

Replies
3
Views
3K
Replies
75
Views
6K
Replies
14
Views
7K
Replies
4
Views
4K
Replies
6
Views
3K
Replies
16
Views
4K
Replies
3
Views
2K
Replies
2
Views
2K
Replies
2
Views
2K
Replies
2
Views
2K
Back
Top