Tagged Questions
10
votes
3answers
453 views
(Missing) performance improvements with C++11 move semantics
I've been writing C++11 code for quite some time now, and haven't done any benchmarking of it, only expecting things like vector operations to "just be faster" now with move semantics. So when ...
11
votes
4answers
306 views
C++11 “Non-movable” type [duplicate]
Possible Duplicate:
Why do C++11-deleted functions participate in overload resolution?
I have two questions about the following C++11 code:
#include <iostream>
using namespace std;
...
4
votes
2answers
194 views
Conversion to `const Y` not applicable for `R&&` on clang
The following code compiles fine with g++ (GCC) 4.7.1 20120721, but
fails with a recently build clang version 3.2 (trunk).
struct Y {};
struct X {
operator const Y() const { return Y(); }
};
void ...
2
votes
1answer
207 views
Is clang Xcode 4.4.1 buggy when -fno-elide-constructors is set?
I'm trying to educate myself on move constructors and move assignment so I can get my students started on this feature of C++11. I've seen (and explained elsewhere on this site) that compilers will ...
5
votes
1answer
308 views
Move semantics in MS C++ vs Clang
After doing some experimentation with move semantics with an array type I created, I am wondering why Microsoft's C++ compiler calls the move constructor when returning from a method by value whilst ...
5
votes
1answer
394 views
Is this non-copyable map legal c++11? GCC 4.7 and MSVS 2010 allow it. Clang 3.1 does not
I have created a non-copyable map which I cannot get to compile with clang. Since clang is meant to be very standards compliant I was wondering if my code was legal. MSVS 2010 and GCC 4.7 compile this ...
5
votes
1answer
508 views
Compile error when calling a move overloaded function with an implicitly convertible object
This program does not compile using clang++ test.cpp -std=c++0x:
class A
{
public:
A() {}
A(const A&) {}
A(A&&) {}
A& operator = (const A&) { return *this; }
...