The deleted-functions tag has no wiki summary.
10
votes
5answers
263 views
Are there any use cases for a class which is copyable but not movable?
After reading this recent question by @Mehrdad on which classes should be made non-movable and therefore non-copyable, I starting wondering if there are use cases for a class which can be copied but ...
45
votes
2answers
776 views
How is “=default” different from “{}” for default constructor and destructor?
I originally posted this as a question only about destructors, but now I'm adding consideration of the default constructor. Here's the original question:
If I want to give my class a destructor ...
5
votes
1answer
395 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 ...
1
vote
3answers
326 views
Opening stream via function
I need help with the non-copyable nature of [io](f)streams.
I need to provide a hackish wrapper around fstreams in order to handle files with unicode characters in their filenames on Windows. For ...
11
votes
5answers
6k views
error: use of deleted function
I've been working on some C++ code that a friend has written and I get the following error that I have never seen before when compiling with gcc4.6:
error: use of deleted function
...
2
votes
2answers
327 views
How may I forbid calls to const member function of an rvalue object in C++ 2011?
The following code
#include <vector>
#include <string>
#include <iostream>
std::string const& at(std::vector<std::string> const& n, int i)
{
return n[i];
}
...
10
votes
2answers
563 views
Deleting virtual functions in C++0x
It isn't clear what happens if I delete a virtual method in C++0x:
virtual int derive_func() = delete;
Does this mean this class and everything that inherits from it can not define/implement the ...
7
votes
2answers
255 views
What is “= delete”?
What do these two strange lines of code mean?
thread_guard(thread_guard const&) = delete;
thread_guard& operator=(thread_guard const&) = delete;
5
votes
3answers
471 views
Can any function be a deleted-function?
The working draft explicitly calls out that defaulted-functions must be special member functions (eg copy-constructor, default-constructor, etc, (ยง8.4.2.1-1)). Which makes perfect sense.
However, I ...
