6
votes
12answers
445 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 com …
5
votes
2answers
120 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 fol …
1
vote
5answers
108 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 …
4
votes
2answers
135 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 fo …
3
votes
3answers
146 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/f39 …
3
votes
4answers
175 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(. …
0
votes
2answers
51 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 la …
2
votes
1answer
123 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':
/usr/lib/gcc/i58 …
8
votes
3answers
264 views
C++0x constexpr and endianness
A common question that comes up from time to time in the world of C++ programming is compile-time determination of endianness. Usually this is done with barely portable #ifdefs. …
2
votes
2answers
195 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++ syn …
6
votes
2answers
133 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 al …
6
votes
2answers
150 views
Determining maximum possible alignment in C++
Is there any portable way to determine what the maximum possible alignment for any type is?
For example on x86, SSE instructions require 16-byte alignment, but as far as I'm aware …
3
votes
6answers
297 views
Is it bad form to call the default assignment operator from the copy constructor?
Consider a class of which copies need to be made. The vast majority of the data elements in the copy must strictly reflect the original, however there are select few elements whos …
7
votes
7answers
472 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.
in …
1
vote
4answers
217 views
Variable length template arguments list?
I remember seing something like this being done:
template <ListOfTypenames>
class X : public ListOfTypenames {};
that is, X inherits from a variable length list of typenam …
