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)

2
votes
1answer
33 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> ...
1
vote
2answers
114 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
23 views

Problems when compiling a crypto library

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
61 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
47 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
23 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
142 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
15 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
0answers
43 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
71 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
285 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
136 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
104 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
37 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
169 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
22 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
234 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
64 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
33 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
175 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
83 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
80 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
202 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
92 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
44 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
345 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
37 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
28 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
74 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
30 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
73 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 ...
0
votes
2answers
82 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
247 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 ...
20
votes
6answers
831 views

got an unexpected answer from the x?y:z expression

Here is a simple C++ snippet: int x1 = 10, x2=20, y1=132, y2=12, minx, miny, maxx, maxy; x1<=x2 ? minx=x1,maxx=x2 : minx=x2,maxx=x1; y1<=y2 ? miny=y1,maxy=y2 : miny=y2,maxy=y1; ...
2
votes
1answer
86 views

Looping through a unique_ptr collection outside of an object

I'm trying to loop through a collection of pointers inside the object Baz from outside the class by having the class return an vector::iterator. When I run the for loop I get the following error: ...
2
votes
1answer
102 views

Generalized Attributes for Memory Alignment in GCC/Clang

Are there generalized attributes for C++11 for indicating that a variable is memory aligned in GCC/Clang? (Note that I'm familiar with __builtin_assume_aligned. I was wondering if there was a way to ...
2
votes
2answers
83 views

How do I read a double from file?

I came up with the following code: #include <stdio.h> #include <iostream> #include <fstream> int main() { std::ifstream a0; a0.open("data/a0", std::ios::in | std::ios::binary); ...
3
votes
1answer
45 views

Combination of std::ios::openmode to truncate if the file exists but prevent new file creation?

I have asked earlier if there was a combination of openmode to avoid modifications of an existing file. Now I would like to know if the contrary is possible : if the file already exists, truncate it ...
4
votes
2answers
191 views

Are 'const' values inside a container actually disallowed?

Why can't I put structures with const values inside a container like std::vector? (I understand the technical reason the compiler is reporting, I'm just uncertain the compiler/collection should be ...
-1
votes
0answers
12 views

chai3d-the system cannot find the file specified in chai3d [closed]

i'm trying to run chai3d but everytime try to run it this error comes out: c:\Users\user\Contacts\Desktop\cha3d-2.0.0\examples\msvc9\01-devices\x64\Debug\01-devices.exe. The system cannot find the ...
2
votes
2answers
119 views

std::enable_if With Non-Type Template Parameters

how would you go about using non-type template parameter comparison in a std::enable_if? I can not figure out how to do this again. (I once had this working, but I lost the code so I can't look back ...
1
vote
2answers
85 views

g++ special handling of printf

Anyone knows why the following code works under g++ 4.7.2? If I change the name printf to another name such as f, it has compiler error saying constexpr can't contain non-const function calls (which ...
0
votes
1answer
43 views

Template member function error: clang doesn't match any member function

I've write the following template member function but i can't call it without getting error by compiler: template <class T, class A> auto tpool::enqueue(T&& func, ...
1
vote
1answer
84 views

Using std::shared_ptr to share data between producer/consumer threads

I am trying to use std::shared_ptr to point to the data being produced by one thread and consumed by another. The storage field is a shared pointer to the base class, Here's the simplest Google Test ...
4
votes
1answer
179 views

Why was the std::pair class standard changed to disallow types with only a nonconstant copy constructor in C++11?

I am reading through Nicolai M. Josuttis' "The C++ Standard Library (Second Edition)" and have just reached the section on std::pair. The author notes that: Since C++11, a pair<> using a ...
0
votes
0answers
22 views

Range-based for loop with boost::adaptor::indexed

The C++11 range-based for loop dereferences the iterator. Does that mean that it makes no sense to use it with boost::adaptor::indexed? Example: boost::counting_range numbers(10,20); for(auto i : ...
0
votes
1answer
43 views

Lambdas vs functions+function pointers for UI events

I have a game engine which includes a built-in in-game editor. the editor is it's own class that is used only as a single object that gets instantiated when the in-game editor is invoked. I also have ...
1
vote
2answers
35 views

Using pseudo-random number engines in deterministic, multi-threaded applications?

I'm trying to use the C++11 random number generators to shuffle decks of cards. I've discovered (by looking in the implementation) that the random number sequence produced by two engines are the same ...
5
votes
2answers
164 views

C++11 - can't awake a thread using std::thread and std::condition_variable

I'm stuck on a problem when trying to awake a thread by another one. A simple producer / consumer thing. Below the code. Line 85 is the point I don't understand why it's not working. The producer ...

1 2 3 4 5 153