473,657 Members | 2,805 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Template in Template Problem

The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};

template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;

int value = 0;

TemplateFunctio n<int>(C, value);

return 0;
}

The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );

Any help would be appreciated.

Feb 16 '07 #1
9 1210
easy wrote:
The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};

template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;

int value = 0;

TemplateFunctio n<int>(C, value);

return 0;
}

The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );

Any help would be appreciated.
Try:

rC.template SomeSillyFuncti on< T >( value );

Feb 16 '07 #2
On 16 Feb, 16:19, "easy" <chris.mich...@ lmco.comwrote:
The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?

class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}

};

template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}

int main()
{
ClassWithTempla teFunction C;

int value = 0;

TemplateFunctio n<int>(C, value);

return 0;

}

The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );

Any help would be appreciated.
What compiler are you using?

Using MS Visual Studio 2005 your code compiles with no errors and when
I step through in the debugger it follows the expected path. Also, the
code compiles without errors in Comeau online (can't execute it there
to see what happens).

Gavin Deane

Feb 16 '07 #3
On Feb 16, 10:28 am, "Gavin Deane" <deane_ga...@ho tmail.comwrote:
On 16 Feb, 16:19, "easy" <chris.mich...@ lmco.comwrote:


The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};
template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;
int value = 0;
TemplateFunctio n<int>(C, value);
return 0;
}
The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );
Any help would be appreciated.

What compiler are you using?

Using MS Visual Studio 2005 your code compiles with no errors and when
I step through in the debugger it follows the expected path. Also, the
code compiles without errors in Comeau online (can't execute it there
to see what happens).

Gavin Deane- Hide quoted text -

- Show quoted text -
compiler = gcc 3.3.5

Feb 16 '07 #4
On Feb 16, 10:23 am, Rolf Magnus <ramag...@t-online.dewrote:
easy wrote:
The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};
template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;
int value = 0;
TemplateFunctio n<int>(C, value);
return 0;
}
The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );
Any help would be appreciated.

Try:

rC.template SomeSillyFuncti on< T >( value );- Hide quoted text -

- Show quoted text -
I am unfamilliar with inserting the operator "template" in the
function call. I will try it.

Feb 16 '07 #5
On Feb 16, 10:23 am, Rolf Magnus <ramag...@t-online.dewrote:
easy wrote:
The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};
template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;
int value = 0;
TemplateFunctio n<int>(C, value);
return 0;
}
The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );
Any help would be appreciated.

Try:

rC.template SomeSillyFuncti on< T >( value );- Hide quoted text -

- Show quoted text -

rC.template SomeSillyFuncti on< T >( value ); compiles. I will have to
study more the keyword "template".

Feb 16 '07 #6
Rolf Magnus wrote:
easy wrote:
>The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};

template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;

int value = 0;

TemplateFunctio n<int>(C, value);

return 0;
}

The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );

Any help would be appreciated.

Try:

rC.template SomeSillyFuncti on< T >( value );
My fix is: rC.SomeSillyFun ction( value );
This way the compiler is left to figure out how to instantiate the
template. Your fix is rather confusing? Why is adding 'template' here a
resolution? Can you make an analogy as an explanation?
Feb 16 '07 #7
* Fei Liu:
Rolf Magnus wrote:
>>
Try:

rC.template SomeSillyFuncti on< T >( value );

My fix is: rC.SomeSillyFun ction( value );
This way the compiler is left to figure out how to instantiate the
template. Your fix is rather confusing? Why is adding 'template' here a
resolution? Can you make an analogy as an explanation?
Using the 'template' keyword is a more general fix, because it lets you
choose the template parameter(s) independent of the argument's type(s).
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Feb 16 '07 #8
Fei Liu wrote:
Rolf Magnus wrote:
>easy wrote:
>Try:

rC.template SomeSillyFuncti on< T >( value );

My fix is: rC.SomeSillyFun ction( value );
This way the compiler is left to figure out how to instantiate the
template. Your fix is rather confusing? Why is adding 'template' here a
resolution? Can you make an analogy as an explanation?
I thought template in this context was a FAQ, kind of like typedef
typename xxx. Apparently not.

Feb 16 '07 #9
On Feb 16, 12:21 pm, Fei Liu <fei...@aepnetw orks.comwrote:
Rolf Magnus wrote:
easy wrote:
The following is a much simplified version of some code that is
refusing to compile. Is there anything technically wrong with the
code?
class ClassWithTempla teFunction
{
public:
template<class Tinline void SomeSillyFuncti on(T value) const
{
}
};
template <typename Tvoid TemplateFunctio n( ClassWithTempla teFunction
& rC, T value)
{
rC.SomeSillyFun ction< T >( value );
}
int main()
{
ClassWithTempla teFunction C;
int value = 0;
TemplateFunctio n<int>(C, value);
return 0;
}
The error I get from the compiler is " Parse error before '>' " on the
line: rC.SomeSillyFun ction< T >( value );
Any help would be appreciated.
Try:
rC.template SomeSillyFuncti on< T >( value );

My fix is: rC.SomeSillyFun ction( value );
This way the compiler is left to figure out how to instantiate the
template. Your fix is rather confusing? Why is adding 'template' here a
resolution? Can you make an analogy as an explanation?- Hide quoted text -

- Show quoted text -
Once I knew what to look for I found this discussion. Very helpful.
http://groups.google.com/group/comp....ff203f27c5bfb0

Feb 17 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2601
by: C. Carbonera | last post by:
/* Hi, I have a problem with explicit instantiation of templates in Visual C++ 6.0. I have provided the source below. I have an example of a function template that produces incorrect output in the code below. The function template < typename T >
6
2330
by: Adam Parkin | last post by:
Hello, all I'm having a problem with friend functions in a templatized Queue class I'm writing using linked lists. The problem is that I can't get the friend function to be able to access private data from the class. Here's the gist of the code: template <class T> struct NodeType { T data; NodeType<T> * link;
7
2474
by: Drew McCormack | last post by:
I have a C++ template class which contains a static variable whose construction registers the class with a map. Something like this: template <typename T> class M { static Registrar<M> registrar; }; The constructor of Registrar does the registering when it is initialized.
7
2124
by: Lionel B | last post by:
Greetings. The following code compiles ok and does what I'd expect it to do: ---------- START CODE ---------- // test.cpp
3
4459
by: David Komanek | last post by:
Hi all, I am trying to learn more about how to use g++/Cygwin to produce dll files on WinXP. And I have a problem which at the first look seems to be an obvious dll-export problem, but I don't think this is really the issue. Here is a description of my problem. MathLibrary.dll: - SpaceTimeVector (uses various stuff from this dll)
5
1709
by: Amit | last post by:
Greetings all, I am writing some code somehwat similar to the test code I have below. I am having a variety of issues with template specialization. I am not sure if this is related to something i havent correctly understood related to template specialization or is it some problem related to the compiler. Following is the code..
2
2757
by: Siegfried Weiss | last post by:
Hi guys, i give up finding a solution by reading or by trial & error. Hope, YOU can help me! (Sorry for my rather long posting.) Stroustrup says, that templates could be declared with - type parameter, e.g. template<class T> - parameters with *simple* types like int, e.g. template<int size> - template parameter, e.g. template< template<class> class A > the latter beeing a type specifier, not an instance of A.
3
3933
by: Chris | last post by:
I am having a very strange problem involving virtual functions in template classes. First of all, here is an extremely simplified structure of the two classes I am having problems with. template<class Type> class base { public: base& operator/=(const base&); Type *image;
19
7920
by: aaragon | last post by:
Hi everyone. A very simple question. I would like to know what is better in terms of performance. I want to use a simple function to obtain the minimum of two values. One way could be using a macro: #define min(a,b) ((a<b)?a:b) I thought that another way could be to use a template function: template <class T> T min<T a, T b>
3
3749
by: Hamilton Woods | last post by:
Diehards, I developed a template matrix class back around 1992 using Borland C++ 4.5 (ancestor of C++ Builder) and haven't touched it until a few days ago. I pulled it from the freezer and thawed it out. I built a console app using Microsoft Visual C++ 6 (VC++) and it worked great. Only one line in the header file had to be commented out. I built a console app using Borland C++ Builder 5. The linker complained of references to...
0
8403
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8316
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8833
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8737
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8509
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8610
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5636
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4168
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1730
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.