Tagged Questions
3
votes
3answers
565 views
Creating a new primitive type
Is there a way to create a new type that is like one of the basic types (eg char), and can be implcitly converted between, but will resolve diffrently in templates, such that for example, the ...
2
votes
2answers
88 views
How to determine if a C++ object is a time_t
How can I determine if a C++ object is a time_t, as opposed to the integral type time_t is defined as?
I specifically want to template specialize a function,
template <typename T> void ...
0
votes
7answers
448 views
Typedefs and template specialization
Consider this code:
typedef int type1;
typedef int type2;
template <typename>
struct some_trait;
template <>
struct some_trait<type1>
{
static const int something=1;
};
...