• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: "explicit qualification in declaration" error?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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
  • Follow-Ups:
    • Re: "explicit qualification in declaration" error? (SOLVED)
      • From: Rick Mann <email@hidden>
References: 
 >"explicit qualification in declaration" error? (From: Rick Mann <email@hidden>)

  • Prev by Date: Re: Does XCode 2.3 included latest docs, or do I need them separately?
  • Next by Date: AppleScript code error?
  • Previous by thread: "explicit qualification in declaration" error?
  • Next by thread: Re: "explicit qualification in declaration" error? (SOLVED)
  • Index(es):
    • Date
    • Thread