Re: "explicit qualification in declaration" error?
Re: "explicit qualification in declaration" error?
- Subject: Re: "explicit qualification in declaration" error?
- From: Howard Hinnant <email@hidden>
- Date: Thu, 1 Jun 2006 20:40:57 -0400
On Jun 1, 2006, at 3:33 PM, Rick Mann wrote:
In the following bit of code, I'm getting the error below:
template <typename TWindow>
TWindow*
NibDecoder::CreateWindowFromNib(
CFStringRef inNibName,
CFStringRef inWindowName) <--- here
{
/Developer/Additions/OpenPP/PowerPlantX/Persistence/NibPersistence/
PPxNibDecoder.h:63: error: explicit qualification in declaration of
`TWindow* PPx::NibDecoder::CreateWindowFromNib(const __CFString*,
const __CFString*)'
I'm not sure what this means. CodeWarrior compiles this just fine.
Any suggestions?
This is conforming behavior. Here's a simplified example:
namespace N
{
void N::f() {}
}
The conforming code would be:
namespace N
{
void f() {}
}
Personally I'd just edit the PPX source <shrug>.
-Howard
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden