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)

1
vote
2answers
99 views

How to measure execution time in c++11? [closed]

I am slowly transitioning to c++11 and I was wondering what is the best way now to measure execution time? There are many new things, I am trying to catch up. Thanks
9
votes
1answer
112 views

Is it possible to legally overload a string literal and const char*?

Is it possible in C++11 to overload const char*'s and string literals (const char[])? The idea is to avoid having to call strlen to find the string length when this length is known already. This ...
1
vote
1answer
56 views

How to get element from std::tuple by type

I have a set of classes A, B, C and I want to have access instances of them from generic code by type, f.e template<typename T> newObject() { return m_storage->getNew(); } where ...
-5
votes
1answer
20 views

prohibiting copy constructor with new standard c++11

hey guys I was trying to create a simple class with copy constructor prohibiting. #include <cstdlib> // class my_stack { std::size_t last; int *data; std::size_t max_elem; public : int ...
0
votes
1answer
33 views

C++11 char16_t strstr and sprintf equivalent

Is there any equivalent function to strstr and sprintf for char16_t type? Also, where could I find the remaining functions of char16_t?
1
vote
4answers
87 views

Speeding up double absolute value in C++

I'm profiling my code and optimized everything I could, coming down to a function which looks something like this: double func(double a, double b, double c, double d, int i){ if(i > 10 ...
0
votes
2answers
85 views

Use case of C++11 function declaration at block scope?

It would seem I can declare a function at block scope: int main() { void f(); // OK } However I can't define it: int main() { void f() {}; // ERROR } My question is, of what use is a ...
0
votes
0answers
15 views

Is it possible to infer template parameters of tuple from brace-type initialization?

In this example, is it possible to allow the deduction of the template parameters type of the tuple? #include<tuple> #include<string> template<class T1, class T2> void ...
13
votes
1answer
149 views

Why is my object not being copied when move constructor is deleted?

I'm trying to use this code to demonstrate the use of the copy-constructor. My presumption was that when I have a function that returns by value, my compiler will, by default, perform a move of the ...
0
votes
2answers
26 views

C++0x 3d map initializing like in php associative arrays

i'm just getting into new c++0x stuff and instancing a map like this: std::map<int, std::map<int, int>> foo; foo[1][2] = 3; is easily possible. But can i do something like in php? ...
0
votes
0answers
82 views

A way of achieving lazy evaluation in C++ [closed]

So I was answering a question about lazy evaluation (here, my answer is overkill for that case but the idea seems interesting) and it maid me think about how lazy evaluation might be done in C++. I ...
1
vote
3answers
49 views

Templating on a variable number of tagged bases

I'm trying to build a utility that involves inheriting from the same base multiple times, which I'm doing by templating on an integer to make the bases distinct. Unfortunately I've found myself ...
2
votes
4answers
88 views

function call with default parameter

Today I got out my examination about C++ programming. There was one question where I and my professor didn't find together. The question was if the following function works or not. I said of course ...
1
vote
1answer
33 views

C++11 for xCode errors

I want to use std collections, for example std::vector in my xCode 4.5 project. Following the explanation here no type named 'shared_ptr' in namespace 'std' I changed my compiler ...
6
votes
5answers
261 views

Why don't the compiler take the namespace name when the inner scope ones don't work?

I thought I understood name lookup very well (after having watched several videos about it and read a lot) but I just hit this case: #include <iostream> namespace test{ struct Id {}; ...
3
votes
4answers
132 views

Reducing the sizeof a vector using custom allocator?

I'm using Linux on a 64-bit machine and I use g++4.8. The sizeof operator applied on a std::vector returns : sizeof(std::vector<float>) = 24 sizeof(std::vector<double>) = 24 ...
1
vote
1answer
23 views

Qt Creator use another GCC Version located in another Place

I installed a gcc 4.8.0 in the /opt folder. I put in my PATH, so when i do a gcc/g++ -v it returns to me the 4.8.0 version. But when i go to the QT Creator and compile my program with the c++11 code ...
2
votes
2answers
80 views

Overload resolution with universal references

I have a function which can accept any type by universal reference, and would like to overload it for specific types (some of which are templated themselves, although I don't think that's important ...
8
votes
2answers
121 views

understanding of non-type template parameters

I have problem understanding the following paragraph Per C++11 Standard N3485 Section 14.1.7. I think it is more important to understand the rationale instead of memorizing the facts. A ...
4
votes
3answers
263 views

Why is sizeof(std::mutex)==40 (gcc,clang,icc)? [duplicate]

rather than sizeof(std::atomic<bool>)==1 ? A mutex could be implemented via a simple std::atomic<bool>, so I would think that the size of a mutex could be as small as that, or perhaps 4 ...
2
votes
1answer
52 views

Expansion of a variadic template function causes segmentation fault

I am studying the new C++11 feature about the Variadic Templates, so I wrote a fun template function: template <typename T> void fun(T& a) //Base to stop the recursion { std::cout ...
9
votes
2answers
184 views

Why auto is deduced differently?

int main(){ int x{}; auto x2 = x; auto x3{x}; static_assert(is_same<int, decltype(x)>::value, "decltype(x) is the same as int"); static_assert(is_same<int, ...
1
vote
2answers
42 views

C++11 Adding a stream output operator for std::chrono::time_point

I would like to be able to do the following: std::cerr << std::system_clock::now() << std::endl; And get the following: Wed May 1 11:11:12 2013 So I wrote the following: ...
0
votes
1answer
49 views

Instantiating a variadic member function template of a class template

How can I instantiate a variadic member function template of a class template in separate .cpp file? Say, given an above class template in a set of files: a.hpp with definition of interface, ...
0
votes
2answers
89 views

g++ , range based for and vectorization

considering the following range based for loop in C++ 11 for ( T k : j ) { ... } there are g++ or clang++ optimization flags that can speed up the compiled code ? I'm not talking about any for ...
0
votes
5answers
98 views

Curly brackets after for statement

I'm a newbie. Wrote a code to print sum of number from 1 to 10. Here's what happened; for(a = 1; a<=10; a++) sum += a; cout<<sum; Executing that gave me the correct answer i.e 55 When I ...
8
votes
3answers
172 views

error code vs error condition

I don't quite get why do we need to make a distinction between error code (std::error_code) and an error condition(std::error_condition), aren't they the same thing? What are the advantages of an ...
1
vote
1answer
75 views

Cast a value using decltype, is it possible?

Is it possible to use decltype to cast a value? For example let's say that we have the following template: template<typename Container> auto findInposition(Container& c,int ...
2
votes
2answers
145 views

Is there a succinct way to derive a member's type during construction?

I have: A template routine unarchive that takes a dictionary and a key and based on the template type (T) passed can be specialized to produce a T A constructor for a struct that leverages unarchive ...
0
votes
1answer
22 views

Strange behaviour of passing out refernce in binding of lambda function

I want to pass out some parameter from the lambda function, so I bind a reference parameter to a lambda function. However, the outer variable is not changed after calling the function. If I bind the ...
2
votes
1answer
82 views

How to specialize for member function type in template class?

I just tested the following codes, and I find out std::is_function doesn't accept member function types.(I'm not sure if this is true for other compilers, I'm using MVC++ Nov 2012 CTP) class Ac { ...
6
votes
1answer
138 views

make_shared and emplace functions

I was trying to find some easy way to emplace elements in a std::vector<std::shared_ptr<int>> but couldn't come with anything. std::shared_ptr takes pointers as parameters, so I can still ...
1
vote
2answers
45 views

Template Conversion Failure with Lambda Function

Hy @ all, we have to realize the following functioncall: std::mt19937 engine; color_table lut = create_random_color_map(engine); The engine has to be exchangeable. We tried to implement it this ...
1
vote
4answers
128 views

const * const * member variable initialization c++

I am having trouble with the initialization of this struct (simplified for example) struct S{ const float * const * const data;}; Basically I have a buffer of buffers of floats, and I use const to ...
0
votes
0answers
52 views

Storing methods/members from different class in a variable to access them later?

I want to make a keybinding configuration menu for my application to enable users to map specific buttons/axes/keys/etc to actions in my application. I have, for example a joystick class and a ...
1
vote
2answers
116 views

c++ template custom warning [closed]

I'm working with C++11 and i have some code which is equivalent to template<typename T1, typename T2> auto add_func( const T1& lhs, const T2& rhs ) { return lhs + rhs; } when I ...
2
votes
2answers
147 views

Is it possible to get the return type of a function without passing arguments to it?

Obviously, you can get the return type of a function with decltype(foo()), but if foo takes arguments that won't work, you'd have to pass some dummy arguments to foo in order for it to work. But, is ...
-1
votes
1answer
83 views

How to use int argc,char *argv[] outside of main function in c++? [closed]

I am having a problem when writing codes in c++. I used int argc,char *argv[] outside of the main function and it tells me they are not defined. I have tried to use the extern but it doesn't help. Can ...
4
votes
2answers
100 views

Initialize a Struct containing a const array with initializer list

I working with C++11 and have a Class containing the following Struct: struct Settings{ const std::string name; const std::string* A; const size_t a; }; class X { static const ...
1
vote
2answers
23 views

How do I save the state of std::mersenne_twister_engine to restore it later?

I would like to save the state of a std::mersenne_twister_engine so that I can restore it back exactly at a later time. I know I can save the original seed and call discard to roll the engine forward ...
3
votes
4answers
119 views

Is relying on the type of a Windows handle being a pointer ok?

Windows handles are sometimes annoying to remember to clean up after (doing GDI with created pens and brushes is a great example). An RAII solution is great, but is it really that great making one ...
1
vote
1answer
88 views

Efficient way to remove elements from std vector according to predicate

I'm writing an algorithm which is supposed to remove from a set of points stored inside a vector every element which is inside any of a list of rect that I supply. I'm using it also as a testing ...
-1
votes
1answer
36 views

c++11 map.at reject values from a enum [closed]

I was developing a class to warp objects from a libray and I found the following problema: The library generates a series of values stored in a map; this map uses a enum type as key: enum key_type { ...
0
votes
1answer
59 views

C/C++ compiling different parts of the program with different compilers

I'm writing a program in C++ that requires a call to a subroutine written in an open source C program. The C file is called shd.c. (There is no header file for shd in the program). The C program by ...
7
votes
1answer
127 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 ...
-12
votes
0answers
149 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
113 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
92 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
211 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
58 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 ...

1 2 3 4 5 154