6
votes
12answers
482 views
Are you using C++0x today? [closed]
How many people are following the discussion surrounding and design of C++0x? How has it affected your design choices in your own programs, even before its release? (Anything common you're doing …
5
votes
2answers
139 views
Cache Line Alignment (Need clarification on article)
I've recently encountered what I think is a false-sharing problem in my application, and I've looked up Sutter's article on how to align my data to cache lines. He suggests the following C++ code:
// …
1
vote
5answers
122 views
C++ STL unordered_map problems and doubts
Hello,
after some years in Java and C# now I'm back to C++. Of course my programming style is influenced by those languages and I tend to feel the need of a special component that I used massively: …
2
votes
1answer
150 views
fstream linking error in g++ with -std=gnu++0x
Hello, I'm have an application built with the -std=gnu++0x parameter in tdm-mingw g++ 4.4.0 on windows.
It is using an ofstream object and when I build, it gives the following linking error:
…
6
votes
2answers
136 views
Are there any updates of localization support in C++0x?
The more I work with C++ locale facets, more I understand --- they are broken.
std::time_get -- is not symmetric with std::time_put (as it in C strftime/strptime) and does not allow easy parsing of …
4
votes
2answers
138 views
What is #defined if a compiler is Cpp0x compliant?
Is there any official, or inofficial, #defines for when a compiler is Cpp0x compliant?
Even better, for specific Cpp0x functionality (~#cpp0xlambda, #cpp0xrvalue etc)?
(Haven't found anything about …
3
votes
3answers
162 views
Copy elision on Visual C++ 2010 Beta 2
I was reading 'Want Speed? Pass by Value' on the C++ Next blog and created the following program to get a feel for copy elision and move semantics in C++0x: http://pastebin.com/f39c826c6
However I am …
7
votes
1answer
140 views
const reference binding to an rvalue
Working on this question, I found an inconsistent behavior.
Why reference binding behave different in a constructor from a common function?
struct A {
};
struct B : public A {
B(){}
private:
…
0
votes
2answers
53 views
Intermediate results using expression templates
Hi,
in C++ Template Metaprogramming : Concepts, Tools, and Techniques from Boost and Beyond
... One drawback of expression templates is that they tend to encourage writing large, complicated …
3
votes
4answers
184 views
What does static_assert do, and what would you use it for?
Could you give an example where static_assert(...) 'C++0x' would solve the problem in hand elegantly?
I am familiar with run-time assert(...). When should I prefer static_assert(...) over regular …
2
votes
2answers
204 views
Is there C++ library to create strong Enums ?
Ideally I would like a following examples to work, but I guess some of it is not implementable in C++.
{
typedef StrongEnum<Red=0, Green=1, Blue=2> Color; // not a C++ syntax
Color c = …
2
votes
1answer
131 views
std::regex — is there some lib that needs to be linked?
I get a linker error with the following code:
#include <regex>
int main()
{
std::regex rgx("ello");
return 0;
}
test.o: In function `basic_regex':
…
3
votes
8answers
539 views
Template Meta-programming with Char Arrays as Parameters.
I'm playing around with TMP in GCC 4.3.2's half-implementation of C++0x, and I was wondering if there was a way to somehow do the following:
template <char x, char... c>
struct mystruct {
...
…
5
votes
2answers
445 views
Why are C++0x rvalue reference not the default?
One of the cool new features of the upcoming C++ standard, C++0x, are "rvalue references." An rvalue reference is similar to an lvalue (normal) reference, except that it can be bound to a temporary …
7
votes
7answers
484 views
What exactly is nullptr in C++0x?
Most of C++ programmers are waiting for C++0x. An interesting feature and a confusing one (at least for me) is the new nullptr.
Well, no need anymore for the nasty macro NULL.
int* x = nullptr;
…
