473,569 Members | 2,611 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

error C2912: explicit specialization; ... is not a specialization of a function template

Can anyone give me a simple work around to fix this compiler error on VC7.1

.....cpp(23) : error C2912: explicit specialization; 'bool Equal<_F32>(con st
_F32::type,cons t _F32::type)' is not a specialization of a function template

For this code:

template< class T >
inline bool Equal( const typename T::type v0,
const typename T::type v1 )
{
return v0 == v1;
}
template<>
inline bool Equal< _F32 >( const _F32::type v0, // error occurs at this line

const _F32::type v1 )
{
return fabs( v0 - v1 ) < _F32::epsilon;
}

EnderJSC
Nov 17 '05 #1
1 6663
Jo**********@ho tmail.com wrote:
Can anyone give me a simple work around to fix this compiler error on VC7.1

....cpp(23) : error C2912: explicit specialization; 'bool Equal<_F32>(con st
_F32::type,cons t _F32::type)' is not a specialization of a function template

For this code:

template< class T >
inline bool Equal( const typename T::type v0,
const typename T::type v1 )
{
return v0 == v1;
}
template<>
inline bool Equal< _F32 >( const _F32::type v0, // error occurs at this line

const _F32::type v1 )
{
return fabs( v0 - v1 ) < _F32::epsilon;
}

EnderJSC

If you change 'typename T::type' in your main template it removes the
error and give a template function which is a lot easier to use ie:

template< class T >
inline bool Equal( const T v0,
const T v1 )
{
return v0 == v1;
}

template<>
inline bool Equal( const _F32::type v0,
const _F32::type v1 )
{
return fabs( v0 - v1 ) < _F32::epsilon;
}

Now the compiler can deduct the template type for most cases so you can
just write:
int a=1;
int b=2;
cout << Equal(a,b) << endl; // Uses general template
_F32::type c=1;
_F32::type d=2;
cout << Equal(c,d) << endl; // Uses specialization

PJakobse
Nov 17 '05 #2

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

Similar topics

4
1828
by: CoolPint | last post by:
I would be grateful if someone could point out if I am understanding correctly and suggest ways to improve. Sorry for the long message and I hope you will kindly bear with it. I have to make it elaborate to make sure my questions are clear enough. Let's say I need to write a function whose logic is same for all types (T) except in the case...
5
2229
by: Andy | last post by:
Hi, I got a little confused on 'instantiation' and 'specialization', espcially for explicit instantiation and explicit sepcialization. Can anybody explain the difference? Thanks a lot! Andy
1
1990
by: Bill Rubin | last post by:
The following code gives VC++ 7.1 compiler errors C2785 and C2912 template<class U> struct Trait {typedef double result;} template<class T> typename Trait<T>::result foo() template<> typename Trait<int>::result foo<int>(); // Line causes errors Shouldn't this code compile correctly? If so, is Microsoft aware of this bug Bill Rubin
1
1978
by: ranges22 | last post by:
****************************************************************** I am compiling a librarry which has a .h file containing th following: ****************************************************************** template<typename T> void from_string(const char Str, T &Obj); template<> void from_string(const char Str, long &); // template<>...
1
1479
by: keppensde | last post by:
Hi, I'm trying to compile the following code with VC++ 2003.net. ( The real code is a bit different, but I made a small example that does not make sense, but it shows the problem ) The code compiles ok with the gnu 3.2.3 compiler and seems to be standard c++ to me. Apparently there's a bug in VC++, I'm just checking to see if there is...
2
3915
by: Nick | last post by:
I'm learning C++ and ran into a compile error using Visual C++ 2005 Express on the following example program (located at http://www.cplusplus.com/doc/tutorial/templates.html): // template specialization #include <iostream> using namespace std; template <class T> class container {
4
3345
by: stinos | last post by:
Hi All! suppose a class having a function for outputting data somehow, class X { template< class tType > void Output( const tType& arg ) { //default ToString handles integers/doubles
2
7680
by: Barry | last post by:
The following code compiles with VC8 but fails to compiles with Comeau online, I locate the standard here: An explicit specialization of any of the following:
7
2546
by: (2b|!2b)==? | last post by:
I have a class template. Each of the instantiations implements a method in the class template differently, so I (need?) to use template speciaization. My question is this, when writing the specialization, do I need to implement only the method that is 'different', or do I need to implement all the methods in the class template? ...
0
7700
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...
0
7614
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...
0
7924
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. ...
0
8125
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...
0
7974
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...
0
6284
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5513
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5219
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...
0
3653
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...

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.