Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
200 views

C++03. Test for rvalue-vs-lvalue at compile-time, not just at runtime

In C++03, Boost's Foreach, using this interesting technique, can detect at run-time whether an expression is an lvalue or an rvalue. (I found that via this StackOverflow question: Rvalues in C++03 ) ...
11
votes
1answer
366 views

Is `*--p` actually legal(well formed) in C++03

I'm wondering about this sample piece of code: int main() { char *p ; char arr[100] = "Hello"; if ((p=arr)[0] == 'H') // do stuffs } Is this code actually well formed in C++03? My ...
10
votes
2answers
156 views

Is C++03 a new version of the C++ Standard or just a Technical Corrigendum (TC) of C++98?

I'm pretty sure I read on an authoritative source somewhere (I believe it was on the WG21 pages) that C++03 was not a technical corrigendum of C++98 but that it was a new release of the C++ Standard. ...
6
votes
2answers
115 views

What's the best way to return something like a collection of `std::auto_ptr`s in C++03?

std::auto_ptr is not allowed to be stored in an STL container, such as std::vector. However, occasionally there are cases where I need to return a collection of polymorphic objects, and therefore I ...
6
votes
2answers
453 views

Perfect Forwarding in C++03

If you have this function template<typename T> f(T&); And then try to call it with, let's say an rvalue like f(1); Why isn't T just be deduced to be const int, making the argument a ...
5
votes
3answers
91 views

Getting the type of a member

Is there an easy way to retrieve the type of a member? In C++03 struct Person { std::string name; int age; double salary; }; int main() { std::vector<Person> ...
4
votes
2answers
73 views

Checking whether a template argument is a reference [C++03]

I want to check whether a template argument is of reference type or not in C++03. (We already have is_reference in C++11 and Boost). I made use of SFINAE and the fact that we can't have a pointer to ...
4
votes
1answer
137 views

The move function in unique_ptr C++03 emulation

I'm trying to understand how C++03 emulation of unique_ptr is implemented. unique_ptr is quite like std::auto_ptr but safer. It spits out compiler errors in cases where auto_ptr would have transferred ...
3
votes
5answers
79 views

Vector of structs with const members?

Let's say I have #include <string> #include <vector> using namespace std; struct Student { const string name; int grade; Student(const string &name) : name(name) { } }; ...
3
votes
1answer
104 views

What was `auto` used for before?

I know that before C++11 the auto keyword had a completely different meaning; it was a storage type specifier indicating an object that has automatic storage type (ie, placed on the stack). That's ...
3
votes
5answers
214 views

Rvalues in C++03

How can you tell whether or not a given parameter is an rvalue in C++03? I'm writing some very generic code and am in need of taking a reference if possible, or constructing a new object otherwise. ...
2
votes
3answers
138 views

Default initialization of POD vs. non-POD class types

The C++ standard says (8.5/5): To default-initialize an object of type T means: If T is a non-POD class type (clause 9), the default constructor for T is called (and the initialization is ...
1
vote
4answers
64 views

Member function pointer to unspecified class type - is it possible?

Is it possible to declare a function pointer (non C++ 11) that can point to a member function of any class (read: not a specific class)? For example, if I had class A, B, and C. C has a function ...
1
vote
4answers
130 views

Critical sections and the singleton pattern

Background: One of the problems with using a local static variable in a function as an implementation of the singleton pattern is that if more than one thread calls the function for the first time at ...
1
vote
1answer
106 views

Simple lambda expressions C++03 without boost and so on

Could you, please, give an idea how to implement basic lambda expressions in C++03 without special libraries, in a simple, elegant and smart way? They should make it possible to do something like ...
1
vote
3answers
61 views

Using boost::mpl, how can I get how many template classes are not “Empty”, and call some macro with this number?

I want to call a macro with some arguments depending on the result of boost::mpl::eval_if (or a similar function) that could give how many template arguments are not empty. Say we have some ...
1
vote
1answer
59 views

Force instantiation of derived type instead of base type

Assume we have the following, given code: class T; // with T::~T is virtual class S; class E { void foo() { /* ... */ S s; T* t = new T(s); /* ... */ delete t; /* ... */ } ...
1
vote
1answer
48 views

Retrieve pointer to best match from overload set without calling

For various reasons I need to use 2 phase construction, furthermore the last phase is deferred and performed by another thread, some context: ... #define BOOST_PP_LOCAL_MACRO(n) \ template ...
1
vote
3answers
126 views

Initializing constant array of fixed size inside class

Consider the following class: class A { const int arr[2]; public: A() { } }; Is it possible to initialize arr from the constructor initializer list or in any other way than on the line ...
1
vote
4answers
192 views

How can I fake constructor inheritance in C++03?

As far as I know, you cannot inherit constructors in C++. But there are situations, where it might be required that it looks like you can instantiate inherited classes the same way you instantiate ...
1
vote
3answers
120 views

How to “dereference a type” in C++03?

How do I get the "dereferenced type" of another type in C++03? Note that it can be other dereferenceable type like std::vector<int>::iterator. e.g. if I have template<typename T> struct ...
0
votes
1answer
26 views

Using clause on template class

To make using stuff easier you can bring individal types into the current scope with the using clause: namespace MyCompany { namespace MyProject { class MyType {}; void ...
0
votes
1answer
32 views

Can we have different code in classes when emulating Variadic templates with C++03?

I am trying to fill my classes with different code depending on template arguments but get a compilation error. My code is like this: #include <iostream> #include <string> struct ...
0
votes
1answer
144 views

Can we detect empty classes in C++03? [closed]

Possible Duplicate: Is there an easy way to tell if a class/struct has no data members? Can we detect emply classes, possibly using template? struct A {}; struct B { char c;}; std::cout ...
-1
votes
2answers
68 views

Is it safe to use std::auto_ptr in std::map?

I am aware that you have to be careful with auto pointers (and why), especially with the STL. But I don't see a problem with this: std::map<T1, std::auto_ptr<T2> >; Is this safe? I ...
-5
votes
3answers
111 views

Making is_reference work inside a function template for reference without knowing the type on which the function is to be instantiated

Here is the code #include <iostream> template<typename T> class IsReference { private: typedef char One; typedef struct { char a[2]; } Two; template<typename C> ...