C++03 is the previous revision of the C++ standard, with C++11 being the current revision.

learn more… | top users | synonyms

4
votes
1answer
57 views

How to create template dependent member type

I am trying to cut down and simplify some horribly nested and over specialized templated C++ code. To do so, I would like to be able to declare member type which is dependent on the templated type ...
1
vote
1answer
67 views

function array with functions from different objects

I don't have much experience using array of functions in C++. I need to use an array of functions where the array contains functions from different objects. Here is some dummy code to illustrate what ...
8
votes
3answers
255 views

Determining if ::std::numeric_limits<T> is safe to instantiate

The class template ::std::numeric_limits<T> may only be instantiated for types T, which can be the return value of functions, since it always defines member functions like static constexpr T ...
1
vote
1answer
67 views

Testing for member function template

Assume the following rather simple class: struct A { bool toBool() const { return true; } template<typename T> T to() const { return T();} }; Now, I wish to test for the existence of ...
6
votes
2answers
137 views

How to iterate over a TR1 tuple

Being stuck in TR1 land, for a test program I need to perform certain operations on a number of objects of specific types. I have a couple of tuple type definitions which look like this: typedef ...
6
votes
1answer
140 views

Is there any library that provides containers for non-copyable types that are not default-contructible?

I am looking for a library that provides containers like std::array (compile-time fixed size, but without support for aggregate initialization) and std::vector (variable size, continuous memory) that ...
1
vote
1answer
87 views

Alternative to C++11's std::nextafter and std::nexttoward for C++03?

As the title says, the functionality I'm after is provided by C++11's math libraries to find the next floating point value towards a particular value. Aside from pulling the code out of the std ...
0
votes
2answers
48 views

How to parse a string containing a sequence of rectangles data?

I should parse a string containing some data in the following format: the image named in the string is associated with zero, one or more rectangles; the coordinates of the rectangle are enclosed in ...
3
votes
1answer
63 views

stl find_if and case-insensitive string comparison

I have a vector of Models like below: struct Model { std::string mName; // ....... }; Given a string representing a model name, I want to see if I can find one of the models in the vector. ...
15
votes
2answers
273 views

Will “&a+1 > &a” cause an undefined behaviour

Does c99/c++03 guarantee that &a+1 > &a is always true? for example, there's a (c-like) std::copy, and int a = 0 ; int b[9] ; std__copy(&a , &a+1 , b) ; Does this always work?
11
votes
2answers
246 views

Are static class members guaranteed to be initialized before `main` is called?

Is there any guarantee that static class members are initialized before main is called?
0
votes
2answers
70 views

Forward-declare a typedef

I have got a large header file (~10000 lines) which is auto-generated by a script/program out of my control. In order to avoid to include this file in the declaration of my class, I forward declare ...
1
vote
3answers
105 views

How to have const members in stl container values in C++?

I like to make my C++ member variables const if they should not be changed once the object is constructed, however, sometimes they need to be modified by STL. For example, if I have a vector of my ...
0
votes
2answers
50 views

How to have a collection of integers with adaptive ordering based on past success in C++?

I have a set of integers in C++03, where the integers represent guesses relative to a reference point. The algorithm runs through a long list of items, and for each item, it tries each integer guess ...
1
vote
2answers
60 views

How to create set of integers with non-standard order in C++?

In C++03, I'd like to create a std::set where when iterating, one integer comes first, after that, I don't care what order, but I need an ordering to ensure there are no duplicates in the set. For ...
1
vote
3answers
90 views

Difference in template arguments C<void ()> and C<void (*)()>

I don't understand difference between template arguments template <class T> class C { T t; }; void foo() { C<void ()> c1; //isn't compiled C<void (*)()> c2; } What is ...
2
votes
1answer
68 views

Partial class template specialization

I would like to add a member function in case the last template parameter of my class is explicitely set to a certain value. I do not understand how I can re-use code from previous definition. ...
0
votes
0answers
73 views

C++11 and C++ 2003 compatibility [duplicate]

Does anybody has a list of potential problems when rebuilding C++ 2003 code with a C++11 compiler? Maybe some compilers have compatibility warnings.
0
votes
4answers
61 views

C++ Vector of Internal Class

So I have a header file, Graph.h. Within that header file, I declare a vector. std::vector<Vertex*> vertexList; The elements of this vector are of type pointer to Vertex, which is a class ...
0
votes
1answer
22 views

What is the best syntax to declare a class as noncopyable?

(assuming I cannot use boost::noncopyable, which was explicitly designed for that purpose) (assuming I cannot use C++11) When making a class noncopyable, I usually see the following syntax: class ...
0
votes
2answers
21 views

How to create gettable template type data sa class field?

I have a: template<class T, class E> class Bla { } I want to make T accessable for other classes with something like: Bla::TypeOfE Is such thing possible in C++03 and how to do it?
0
votes
2answers
40 views

g++ error: expected primary-expression

look at this sample: struct parent { template <typename t> inline static t get_t(); }; struct child : public parent { template <typename t> inline static t get_t() { ...
10
votes
1answer
155 views

Do these members have unspecified ordering?

A colleague told me that, in the following type, all members have unspecified ordering in memory (relative to one another). I doubt this, because they all have the same access level. Who is correct? ...
1
vote
2answers
64 views

std::map of member functions with different args

I have a DeviceSettingsManager class that looks like: class DeviceSettingsManager { int32_t PropertyA(); void SetPropertyA(int32_t prop); std::string PropertyB(); void ...
2
votes
1answer
94 views

In place initialization of POD

I do not think "in place" is the right term, but I am lacking a better one. I have a POD, let's say: struct My { int a; }; //and suppose a operator<< to stream is also defined And I may ...
0
votes
1answer
81 views

String format verification without regex (C++03)

Does anyone know of a better way to verify string format in C++ without using the C++11 regex class. Basically I have several strings in this type of format TAG1:VALUE, TAG2:VALUE, TAG1:VALUE, ...
2
votes
3answers
95 views

Template function that accepts temporaries by value and non-temporaries by reference?

I would like to have template <class T> void foo(T &t); to be able to accept temporaries as well, without compromising on accepting other objects by reference and calling non-const ...
5
votes
1answer
79 views

How to overload free function for member type of template

I have a template class that defines some member types. It's similar to how std::map defines it's value_type based on it's own template arguments, but in my case the type is more complex, so it's ...
6
votes
3answers
199 views

C++, is set_terminate local to every thread?

Should set_terminate/get_terminate set a different terminate exception processor for several threads in C++ 2011 or C++ 2003? E.g. if I have program and sets terminate handler to func_1; then I start ...
2
votes
2answers
51 views

How much does the GCC compilers keep to the C/C++ standards?

For example, the C programming language with C99 standard supports hexadecimal floating-point literals but the C++ with C++03 standard doesn't. I tested it, GCC recognized the hexadecimal floating ...
0
votes
4answers
124 views

Getting the C++ compiler to reveal what a type can be converted to

Below is a flawed (and simplified) template function that expects to work on a template arg that can be converted to one of a predefined number of types. It happens to be 2 types, but it cold be many ...
0
votes
1answer
78 views

How to define increment/decrement/etc operator automatically?

I have a bunch of enum types, like this: enum Color {COLOR_RED = 0, COLOR_GREEN = 1, COLOR_BLUE = 2, COLOR_NUM}; enum Direction {DIRECTION_FORWARD, DIRECTION_BACKWARD, DIRECTION_NUM}; enum Choice ...
8
votes
1answer
170 views

How to cast to it boost::bind(&myClass::fun, this, _1, _2, _3) to typedef void (*fun)(arg1, arg2, arg3)?

In lib Bullet there is defined a type: typedef void (*btNearCallback)(btBroadphasePair& collisionPair, btCollisionDispatcher& dispatcher, const btDispatcherInfo& dispatchInfo); in there ...
2
votes
1answer
185 views

Is there a C++11 to C++03 converter? [closed]

Is there such a tool that is able to convert a code that uses some C++11 features to C++03 compatible code (perhaps using some third party libraries like Boost)?
2
votes
2answers
97 views

C++98/03 reference collapsing and cv qualifiers

The code below compiles (gcc 4.7.2 or icc 13) and produces "1 2" output. Which means that const qualifier is dropped, i. e., f<int&> has the parameter type int&. Why does it happen? As ...
0
votes
1answer
155 views

c++ alternative to macro for compile-time string literal concatenation

I want to concatenate a number of string literals at compile time: #include <iostream> #define VAR0 "var0 text" #define VAR1 "var1 text" #define VAR2 "var2 text" static const char* concat = ...
2
votes
2answers
125 views

Share std::fstream or std::stringstream trough std::iostream

I have a function that creates std::stringstream or std::fstream depending on condition, like: // Some class, stringStream_ and fileStream_ are members // obj.Stream() returns std::iostream& if ...
0
votes
1answer
44 views

Are there boost make_shared_array and make_scope or only make_shared?

Are there boost make_shared_array and make_scope_ptr or only make_shared?
0
votes
2answers
91 views

explicit template instantiation gives compile error on XLC, but works on other compilers

The following code is a simplified minimal version of a feature I am trying to implement for a client requirement. It fails to compile on IBM's XLC compiler (version 9 and 11, both) with the error A ...
1
vote
3answers
57 views

How to pass inner typedef which is “int X::*” as template function parameter?

In this code, I want to pass the address of x.y as the template parameter typename Name::Type leValue. #include <iostream> using std::cout; using std::endl; struct X { X() : y(123) {} ...
4
votes
3answers
114 views

Count non-default template arguments with metaprogramming?

I have a template class that accepts from 1 to 8 integer arguments. The permitted range for each argument is 0..15. A default value of 16 for each argument allows me to detect unused arguments. I ...
-1
votes
1answer
495 views

Why doesn't PRIu64 work in this code?

As per this answer, I tried printing a uint64_t, but it gives me an error: error: expected ``)' before 'PRIu64' Following is the minimal code showing what I am trying to do: #define ...
1
vote
1answer
119 views

Detecting whether something is (boost) range with SFINAE

For logging code, I would like to detect whether given argument to a template function can be iterated over using the tools from Boost.Range or not. Obviously I need to instantiate different code ...
1
vote
1answer
80 views

How to create a generic insert function for a custom container with a functor

At this point, i'm not worried about this being the correct solution for my problem (in fact, it isn't) but i got into this problem and i couldn't solve it so it's been haunting me and i can't let go. ...
1
vote
2answers
83 views

Setting a member of struct using boost lambda

I am trying to create vector<Wrap> with same values as in v. I tried the below combinations, didn't work! using namespace std; struct Wrap { int data; //Other members }; int main() { ...
2
votes
1answer
86 views

Constant-sized vector class?

Is there a C++ standard type for holding a vector having a constant size? For example, something like a tuple with all element types being the same, so I only have to provide the size as a template ...
2
votes
4answers
384 views

Are undeclared copy-constructors automatically inline?

Are undeclared (auto-generated) copy constructors automatically marked as inline? If so, and if I don't want them to be marked as inline, does that mean I have to define one manually and copy ...
0
votes
3answers
70 views

Initializing a friend's reference member to a class private member

I want to initialize a member (of reference type) in one object to point to a private member of another object (of a different type). I use friend to provide access to the private member. (Please bear ...
3
votes
1answer
163 views

Template method specialization linking error

Consider the following header and source files: // main.cpp #include "myClass.h" int main() { MyClass m; m.foo<double>(); m.foo<float>(); } // myClass.h #pragma once #include ...
7
votes
2answers
243 views

How to do this with std::bind?

(Note: As should already be clear from the tags, this is strictly C++03. Yes, I know, lambda makes all this pain go away (and brings in new kinds, I bet), but this is an embedded system, with an OS ...

1 2 3