3
votes
3answers
82 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 …
4
votes
2answers
99 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 …
0
votes
2answers
40 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 …
3
votes
4answers
157 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(. …
2
votes
2answers
178 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 …
2
votes
1answer
110 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
249 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. …
3
votes
6answers
287 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 …
6
votes
2answers
135 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 …
6
votes
1answer
114 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 …
1
vote
4answers
189 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 …
4
votes
1answer
104 views
C++ : has_trivial_X type traits
The boost library, and it seems the upcoming C++0x standard, define various type trait templates to differentiate between objects which have trivial constructors, copy constructors …
7
votes
7answers
451 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
2answers
212 views
Is it bad that C++0x’s lambda expressions don’t have a named type?
I've been reading a bit about lambda expressions on the internet recently and it seems to me that C++0x's lambda expressions will not have a single type (or types) that will bind e …
5
votes
4answers
444 views
Usage of D in the Field
I have tried to find some information on D. I do especially like this comparison with C++ to get an overview on what it is.
Now I am asking myself: how often D is used in the fiel …
