Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
162 views

Differences between std::endl and '\n' for streambuffer implementations

I'm currently trying to implement a subclass of stringbuf to allow the buffer to tokenize for specific chars ('\n' in my case) and undertake an action if this char occurs (dump the message to a logger ...
10
votes
1answer
561 views

What is the C++ iostream endl fiasco?

I was listening to a google talk by Andrei Alexandrescu on the D programming language when he threw out a one liner about the "endl" fiasco. I just thought endl was the preferred way to signify the ...
6
votes
4answers
747 views

C++ stream as a parameter when overloading operator<<

I'm trying to write my own logging class and use it as a stream: logger L; L << "whatever" << std::endl; This is the code I started with: #include <iostream> using namespace ...
1
vote
1answer
119 views

Custom stream flush type

I've had multiple questions on the matter of streams and stuff, but after thinking for a bit, I've come to the conclusion that all I need is a custom flush type. I want my stream to flush when it gets ...
1
vote
2answers
145 views

Comparing address of std::endl

I am inspecting a piece of existing code and found out it behaves differently when compiled with Visual C++ 9 and MinGW: inline LogMsg& LogMsg::operator<<(std::ostream& ...
0
votes
7answers
105 views

C++ endl with constants

I am just trying to familiarise myself with the basics of C++ moving from Java. I just wrote this functionality abstinent program and am coming across an errortest.cpp:15: error: expected ...
0
votes
1answer
275 views

XCode 4 only displaying cout statements with endl

I have a really weird issue with my cout statements. I've only tried this out with XCode 4. For instance, if I write, cout << "this works" << endl; cout << "this doesnt"; cout ...
0
votes
1answer
713 views

Difference between “endl” and “\n” [closed]

Possible Duplicate: C++: “std::endl” vs “\n” I'm wondering if there is any significant difference between these two ways to print newline : cout << endl; ...