Tagged Questions
9
votes
2answers
8k views
“invalid use of incomplete type” error with partial template specialization
The following code:
template <typename S, typename T>
struct foo {
void bar();
};
template <typename T>
void foo <int, T>::bar() {
}
gives me the error
invalid use of ...
7
votes
4answers
462 views
specialize a member template without specializing its parent
I have a class template nested inside another template. Partially specializing it is easy: I just declare another template< … > block inside its parent.
However, I need another partial ...
7
votes
5answers
3k views
C++ template partial specialization - specializing one member function only
Bumped into another templates problem:
The problem: I want to partially specialize a container-class (foo) for the case that the objects are pointers, and i want to specialize only the delete-method. ...
6
votes
1answer
120 views
Partial template specialization ambiguity
I cant see why the statement in main is ambiguous.
template<class T, class U, int I> struct X
{ void f() { cout << "Primary template" << endl; } };
template<class T, int I> ...
5
votes
3answers
103 views
Avoiding duplication of function definitions in template specializations
The class Widget has some functions that apply for all parameter types (common functions) and other functions that need to be specialized for given types (the uncommon functions).
g++ insists that ...
5
votes
6answers
158 views
Unrolling loops using templates in C++ with partial specialization
I'm trying to use templates to unroll a loop in C++ as follows.
#include <iostream>
template< class T, T i >
struct printDown {
static void run(void) {
std::cout << i ...
5
votes
1answer
145 views
Partial specialization with reference template parameter fails to compile in VS2005
I have code that boils down to the following:
template <typename T> struct Foo {};
template <typename T, const Foo<T>& I> struct FooBar {};
////////
template <typename ...
4
votes
1answer
429 views
class template partial specialization parametrized on member function return type
The following code, which attempts to specialize class template 'special', based on the return type of member function pointer types, results in a compile error with VC9:
template<class F> ...
4
votes
3answers
1k views
Template Partial Specialization - any real-world example?
I am pondering about partial specialization. While I understand the idea, I haven't seen any real-world usage of this technique. Full specialization is used in many places in STL so I don't have a ...
3
votes
2answers
153 views
Template partial specialization with multiple template argument error
When I use template partial specialization on a class with one template argument, I can specialize a method like this:
#include <cstdlib>
template< std::size_t Dim >
class Test
{
public:
...
3
votes
2answers
123 views
Is there a way a partial specialization is always preferred over the primary template?
I'm asking myself
Can you write a class template and a corresponding partial specialization such that for any set of template arguments for the parameters, the partial specialization is taken by ...
3
votes
1answer
79 views
Avoiding duplication of function definitions in partial template specializations when using traits
How does one share common_fn() among all specializations (for Widget<A<T> > and Widget<B<T> >, no matter what T is) in the code below?
#include <cassert>
struct Afoo ...
3
votes
1answer
157 views
partial template specialization
I have a scenario in which there is a template class
template<typename X, typename Y>
class Foo
{
typedef Y::NestedType Bar;
int A (Bar thing);
void B();
int C(X that);
// other stuff
};
...
3
votes
2answers
83 views
How to specialize a complex template with inheritance - C++
I can't seem to find the right syntax to specialize this template :
template <class Object, class Var, class Invert, class Step = Var, unsigned int FIXED = IW_GEOM_POINT>
class TSin : public ...
3
votes
3answers
142 views
Problem with C++ Partial Template Specialization
I have a situation similar to this:
template<class A, class B>
class MyClass<A, B>
{
...
static A RARELY_USED_A;
}
// Seems to work but does not cover all possible cases, since
// ...
3
votes
1answer
184 views
CPP templated member function specialization
I'm trying to specialize the member function moment() only (not the hole class) like this:
template<class Derived, class T>
class AbstractWavelet {
public:
[...]
template<bool ...
3
votes
2answers
107 views
how to templatize partial template specializations?
I'm not even sure what title to give this question; hopefully the code will demonstrate what I'm trying to do:
#include <string>
#include <list>
using namespace std;
template<typename ...
3
votes
2answers
379 views
Get the signed/unsigned variant of an integer template parameter without explicit traits
I am looking to define a template class whose template parameter will always be an integer type. The class will contain two members, one of type T, and the other as the unsigned variant of type T -- ...
3
votes
5answers
2k views
pointers as template parameters?
I have a container class, we'll call it
template <class T> CVector { ... }
I want to do something different with this class when T is a pointer type, e.g. something along the lines of:
...
2
votes
2answers
93 views
Why doesn't my program work when I try to partially specialize a function template?
I am an beginner in template metaprogramming trying to implement generation of multiple versions of similar but slightly different code:
#include <iostream>
enum Type
{
a1,
a2
};
enum ...
2
votes
1answer
666 views
Too few template-parameter-lists problem
Can anybody please tell me how to make the following pseudo-code compatible with GCC4? I wonder how it works under MSVC...
typedef int TypeA;
typedef float TypeB;
class MyClass
{
// No base template ...
2
votes
2answers
335 views
Inner class depending on a template argument
Consider next example :
#include <iostream>
#include <typeinfo>
template< int N, typename T >
struct B
{
struct C;
};
template< typename T >
struct B< 0, T >::C
{
...
2
votes
1answer
206 views
c++ member function specialisation of a class that has a template as a parameter
I am working on a template class Array, which accepts another template TRAITS as a parameter.
template <typename BASE, typename STRUCT>
class Traits {
public:
typedef BASE ...
2
votes
1answer
198 views
May std::tuple_element double as a universal template argument retriever?
This question got me thinking. Sometimes it's useful to grab an actual argument from a class template specialization, if it fails to define a public typedef of the argument. In C++03 it's a sign of ...
2
votes
2answers
176 views
Error with C++ partial specialization of template
I am using PC-Lint (great tool for static code analysis - see http://www.gimpel.com/)
For the following chunk of code:
class ASD {
protected:
template<int N>
void foo();
};
...
2
votes
3answers
594 views
Can I use partial template specialization for a (non-member) function?
I'm trying to use partial template specialization on a (non-member) function, and I'm tripping up on the syntax. I've searched StackOverflow for other partial template specialization questions, but ...
2
votes
3answers
254 views
specializing functions on stl style container types
If i have a type T, what is a useful way to inspect it at compile time to see whether its an STL-style container (for an arbitrary value type) or not?
(Assumption: pointers, reference, etc. already ...
1
vote
2answers
83 views
Partial template specialisation of a functor that's calling a member method of objects passed to it
I have the following functor and its partial specialisation
template <class _T, typename _Return = void, typename _Arg = void>
struct Caller
{
typedef _Return(_T::*Method)(_Arg);
...
1
vote
2answers
373 views
Partial specialisation of member function with non-type parameter
I have a template class with both a type and a non-type template parameter. I want to specialize a member function, what I finding is, as in the example below, I can do a full specialization fine.
...
1
vote
3answers
495 views
Default parameter for partial specialization
What syntax I want to achieve on user side:
double a(1.), b(2.), deps(.1);
bool res1 = compare<double>()(a, b); // works with default eps
bool res2 = compare<double, ...
1
vote
3answers
144 views
How to specialize only some members of a template class?
Code:
template<class T>
struct A {
void f1() {};
void f2() {};
};
template<>
struct A<int> {
void f2() {};
};
int main() {
A<int> data;
data.f1();
data.f2();
...
1
vote
2answers
252 views
Partial specialization for pointers, c++
How to make partial specialization of the class GList so that it is possible to store pointers of I (i.e I*) ?
template <class I>
struct TIList
{
typedef std::vector <I> Type;
};
...
1
vote
2answers
352 views
C++: Partial template specialization
I'm not getting the partial template specialization.
My class looks like this:
template<typename tVector, int A>
class DaubechiesWavelet : public AbstractWavelet<tVector> { // line 14
...
1
vote
1answer
467 views
partial template specialization for dynamic dispatch
I am attempting to write a dynamic dispatcher for a function that's templated on integer values (not on types). While I could either write a code generator or use a big macro chain to create the ...
0
votes
1answer
276 views
c++ pimpl idiom : Implementation depending on a template parameter
In this question I unsuccessfully asked how to use different pimpl implementation depending on a template argument.
Maybe this example ilustrates better what I am trying to do :
#include ...
0
votes
2answers
246 views
C++ - Overload templated class method with a partial specilization of that method
There are a few questions already similar to this already on stack overflow, but nothing that seemd to directly answer the question I have. I do apologise if I am reposting.
I'd like to overload a ...
0
votes
3answers
1k views
C++ template partial specialization error
The following code is giving me a compilation error: class Q64 is not a valid type for a template constant parameter
template<int GRIDD, class T>
INLINE T grid_residue(T amount) {
T rem = ...
0
votes
2answers
123 views
Multiple Partial specialization and full specialization required <> after type definition
I'm using an C++ "event" class that allowed one or two arguments in the to be called delegates.
Lately I've added support for delegates that don't require arguments, however when I specialze the ...
0
votes
3answers
188 views
Templated parameter for a template specialisation?
Hi I've got a static member of a templated class that I want defined for a sub group of classes that are templated ie:
template <typename T>
class FooT
{
private:
static int ms_id;
};
...