C++11 is the name of the C++ standard, approved in 2011. It replaces the previous C++03 standard, adding various core language changes and fixes, and an improved and expanded standard library.

learn more… | top users | synonyms (1)

7
votes
1answer
72 views

Declaring member or not depending on template parameter

Is it possible to declare or not a member variable depending on template condition without using dummy empty type? Example: struct empty{}; struct real_type{}; template<bool condition> struct ...
-8
votes
0answers
76 views

Emacs or Vim for C++ 11 development? [closed]

I can't find a good article on this, I can't even find something really convincing that can help me with the final decision. I like to use the terminal because the keyboard it's faster than keyboard ...
1
vote
1answer
92 views

Variadic template overload resolution

Suppose I have a list of template parameters that can be incremented. I want to increment the head of this list. Here is the code template<int N> struct Counter { static constexpr ...
0
votes
2answers
78 views

c++ what is the type of T[] in template specialization

I have a question about the implementation of std::remove_extent (visual studio 11) template<class _Ty> struct remove_extent { typedef _Ty type; }; ...
5
votes
2answers
179 views

Setter of a lambda function?

Consider the following dumb example : class MyClass { public: template <class Function> inline double f(double x, Function&& function) { return ...
2
votes
1answer
41 views

Boost memory_order_consume Example

I was looking at a Boost example regarding atomic operations and the happens-before relationship, and I'm a bit confused. In the "happens-before through release and consume" section, there is the ...
10
votes
2answers
271 views

Is empty struct defined by C++ standard?

Is there any std::empty struct or something similar or do I need to define my own: struct empty{}; This can be used very nice in combination with std::conditional or other new std features and I ...
5
votes
3answers
95 views

decltype as a return type in class member function

I got error compiling below code. struct B{ double operator()(){ return 1.0; } }; struct A { auto func() -> decltype(b()) { return b(); } B b; }; ...
0
votes
0answers
48 views

variadic templated Object multiplication

In the below code I am doing multiplication variadic templates for the int values and also for the Objects. It works for the all primitive types. It also works for the only 2 objects. But the code ...
3
votes
1answer
88 views

Exception safety of std::function

I tried without success to find if this code could throw an exception : std::function<void(void)>f=[]{}; According to the standard, the copy or move constructor of std::function are not ...
9
votes
5answers
230 views

Is there a safe way to use C++11 Smart Pointer and the Interface for Raw Pointer together?

I want to use C++11 Smart Pointers in new projects, and encounter a problem. Many current projects still use raw pointers as parameters in their interface and have no interface for smart pointers, ...
6
votes
3answers
167 views

Why locking a std::mutex don't block the thread

I wrote the following code to test my understanding of of std::mutex int main() { mutex m; m.lock(); m.lock(); // expect to block the thread } And then I got a system_error: device or ...
3
votes
2answers
90 views

Unrestricted union in practice

I have some questions about unrestricted unions and their application in practice. Let's suppose I have the following code : struct MyStruct { MyStruct(const std::vector<int>& a) : ...
4
votes
1answer
107 views

What is this compiler error when using a lambda as a template parameter?

I've been struggling with a VS2012 compiler error message I don't understand, so I trimmed down the problem to what seems like the bare minimum. I'm building the following main.cpp using VS2012: ...
1
vote
1answer
41 views

Getting a unique_ptr out of a priority queue

I am maintaining a set of unique_ptr instances in a priority_queue. At some point, I want to get the first element and remove it from the queue. However, this always produces a compiler error. See ...
0
votes
1answer
45 views

Compiling with clang with c++11 enabled fails

Having the following test.cpp: #include <iostream> int main() { int a{}; std::cout << "TEST" << std::endl; } When build with the latest GCC (4.8.0) g++ test.cpp ...
2
votes
1answer
101 views

C++0x: uniform_real_distribution is not a member of std

I am trying to compile my first piece of code using c++0x. I am pretty good with C++, but this one has me stumped. The following will not compile: #include <iostream> #include <random> ...
2
votes
2answers
173 views

Laziness in C++11

Do you know how to perform a lazy evaluation of string, like in this D snippet: void log(lazy string msg) { static if (fooBarCondition) writefln(…) /* something with msg */ } Actually, the ...
0
votes
1answer
30 views

Problems when compiling a crypto library [duplicate]

I get an error when compiling a crypto library crypto/ope.cpp: In member function ‘NTL::ZZ OPE::encrypt(const NTL::ZZ&, int)’: crypto/ope.cpp:80: error: expected primary-expression before ‘[’ ...
-1
votes
2answers
69 views

Combining the values of two different sized vectors [closed]

I was just wondering if there's a more readable way of combining the values of two vectors? #include <vector> #include <iostream> int main( int argc, char ** argv ) { ...
-6
votes
0answers
55 views

Which programming Book Language? C++ or C++11 [closed]

I had few quick question please, if someone can help, would be very grateful. 1) I need to learn visual C# and have seen some very cheap second hand deals online for visual C# 2010 books but would it ...
0
votes
1answer
31 views

How do I use an initializer list with a base class?

Given the following: struct A { int foo; int bar; }; struct B : public A { int baz; }; How would I construct a B with an initializer list that also constructs the elements in A? The ...
2
votes
4answers
186 views

The way to create a new pointer

I am trying to create a new pointer by using two ways, do they mean the same? int* ptn; int* ptn(nullptr);
0
votes
1answer
18 views

clang++ mac os x c++11 linker issue

I have a problem compiling a program with "-std=c++11 -stdlib=libc++" under mac os x 10.8.3 using clang++ from xcode 4.6.2. When I try to use std::mem_fn() or (deprecated) std::mem_fun_ref(), I get ...
1
vote
1answer
57 views

C++11 Setter function parameter passing nullptr

I was wondering about C++11 best practices regarding parameter passing nullptr. I want to reset a class member object by passing a nullptr to an already existing setter function. For a simple ...
0
votes
4answers
89 views

Official C++/11 Makefile Standard/Alternatives?

I am currently using Visual Studio 2012, Eclipse, CodeBlocks, and MinGW to write C++ 11 code. Question: I have noticed features in GCC, (deferred, = vs. immediate, :=, expansions/assignments, etc), ...
8
votes
2answers
320 views

Why was the addition of trailing-return-types necessary in C++11?

I've finally started to read up on c++11 and I fail to understand why trailing-return-types are required. I came across the following example, which is used to highlight the problem: ...
2
votes
3answers
139 views

move constructor: how to handle container attribute? [closed]

How to properly initialize container attribute avoiding reconstructing contained objects? class BAR { ... }; class FOO { public: FOO(FOO &&f) { // ???? } ...
-3
votes
0answers
110 views

If garbage collection gets introduced in c++ [closed]

we know that C++ Standards Committee is looking at adding Garbage collection(GC) in future.Currently we are relaying on RAII to handle freeing resources automatically. In future if garbage collection ...
1
vote
1answer
44 views

Merge two variadic templates in one

Im trying to implement a variadic template wrapper of the loki typelist. Merging two typelists in loki-style is easy, but im having problems with merge in variadic-template style. This is my ...
3
votes
2answers
174 views

In C++, can I typedef an element type from pointer type? [duplicate]

The title says it, look at my minimal example: template<class ptr_to_t> void f(ptr_to_t x) { typedef ptr_to_t t; // does not compile t elem = *x; } int main() { int five = 5; ...
0
votes
1answer
23 views

How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)

I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example. I've found some info about this topic, but it ...
10
votes
2answers
243 views

Why must 'auto' declarations all be of the same type?

It appears that it is not allowed to declare multiple variables of distinct types using the auto keyword. I can't figure out the wording in the standard that would prevent it however. auto i = 1, j = ...
1
vote
2answers
65 views

Decltype and templates - any way to make decltype machinery less complicated?

I was playing around with implementing group_by method in a generic way and I have maybe implemented it(except it doesnt work for C arrays), but still code looks ugly to me... Is there easier way to ...
0
votes
0answers
52 views

Template Method Partial Specialization [duplicate]

I have this in the header. template<unsigned int, typename T> static void createSwitch(T container, Vector3 const& pos); And this in the .cpp file. template<typename T> void ...
0
votes
1answer
37 views

Disabling clang C++11 warnings

I cannot for the life of me get clang to stop warning me about C++11 extensions. Anywhere I use "auto" or any other C++11 extension it spits out a warning. I have the flag -Wno-c++11-extension but it ...
13
votes
1answer
180 views

Can std::function be move-constructed from rvalue reference to a temporary functor object?

I have an untemplated functor object that I'm trying to store as a std::function inside another object. This object is really heavyweight, so it's marked as uncopyable, but it does have a move ...
1
vote
2answers
95 views

constexpr class with array constructor methods

I am trying to write a compile time class for multivariate polynomials (i.e. like P(X,Y,Z) = X^2 + XYZ + YZ, don't worry too much about the mathematics here): template<int DIM, int DEGREE> ...
-4
votes
0answers
81 views

How to store threads in vector [closed]

How does one store threads in a vector or in any data structure for that matter. I looked at this question and I tried the following: std::vector<std::thread> threads; ...
11
votes
2answers
210 views

Empirically determine value category of C++11 expression?

Each expression in C++11 has a value category. One of lvalue, xvalue or prvalue. Is there a way to write a macro that, given any expression as an argument, will produce a string "lvalue", "xvalue" ...
3
votes
1answer
105 views

How do you convert a lvalue to an rvalue? And what happens to the `new` lvalue?

I would like to move an object into a std::vector using std::vector::push_back(). This would seem to be possible since there is a std::vector::push_back(value_type&& val) function. But due ...
1
vote
1answer
50 views

Uniform initialization with ternary operator return from function

I don't know if this is a compiler bug (gcc 4.8 on Arch Linux) or a problem with the standard, but the code below fails to compile. Why is getFoo1 allowed but not getFoo2? struct Foo { int _i; ...
12
votes
2answers
355 views

Does the C++ Standard allow the addition of two integers (fundamental type int) to throw a C++ exception?

Does the Standard allow this? I don't think it does. Someone does. I need intelligent people to prove him wrong.
0
votes
1answer
39 views

Passing unique_ptr to non-member functions

I am having troble figuring our how to pass around my smart pointer. I call the function isIdentity on my matrix object h: void test(const size_t dim) { cout << "identity gen: " << ...
0
votes
1answer
34 views

Invalid null pointer error when converting std::chrono::system_clock::time_point::min() to string

I am following an example in Nicolai M. Josuttis' "The C++ Standard Library (Second Edition)", page 152-153, which details an example to print the epoch, current time, minimum and maximum times of the ...
1
vote
0answers
91 views

Private member functors for a C++ class

I'm writing a class where I would like to have some member methods that have some data associated with them, specifically which mechanical systems of a robot they require use of. I thought I could ...
0
votes
1answer
31 views

Returning different template specialisations from a function

I have created a C++11 class in which I want to parse a string and return an object based on the data in the string. The object I want to return is defined as: // Container for the topic data and id ...
0
votes
1answer
78 views

Adjacency list implementation in C++

I am looking for a concise and precise adjacency list representation of a graph in C++. My nodes are just node ids. Here is how I did it. Just want to know what experts think about it. Is there a ...
1
vote
2answers
89 views

C++ memory management patterns for objects used in callback chains

A couple codebases I use include classes that manually call new and delete in the following pattern: class Worker { public: void DoWork(ArgT arg, std::function<void()> done) { new ...
15
votes
1answer
251 views

Why is basic_string::swap not noexcept?

I just found out that the two swap functions for basic_string (member function and function in namespace std) are not declared with noexcept - neither in the standard library of GCC-4.8 nor in the ...

1 2 3 4 5 153