• 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
Awful function pointer conversion function template
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Awful function pointer conversion function template


  • Subject: Awful function pointer conversion function template
  • From: Dan Caugherty <email@hidden>
  • Date: Thu, 17 Dec 2009 22:17:58 -0500

Hey all --

This is really a C/C++ question, and it's giving me fits, since it's not obvious why there's a syntax error.

Now, I believe I have a legitimate reason for doing what I'm doing, so just trust me. Yes, the code below looks dangerous, but I have some function pointers in legacy code that I must deal with, so I'm trying to minimize the danger in this particular case with some modicum of type checking based on return type.

I'd like to write a quick function template to change a function pointer from type " return_type (*)(void) " to "return_type (*)(...)".  I thought this would work:

template <typename RetT>                            // zero-parameter case 
RetT (*convert_ptr(...)) ( RetT (*src)(void) ) {     // can't use variadic templates yet.. sigh....
   typedef RetT (*rt)(...);                   //wouldn't mind getting rid of this line somehow
  return reinterpret_cast<rt>(src);     //ERROR: "src" was not declared in this scope.
}

Why is gcc tripping on the last line?

TIA,
-- Dan C.


 _______________________________________________
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: Awful function pointer conversion function template
      • From: Jens Miltner <email@hidden>
  • Prev by Date: Re: That frustrating Refactor... command
  • Next by Date: Re: That frustrating Refactor... command
  • Previous by thread: Re: Problem with iPhone OS version (for testing an iPhone app)
  • Next by thread: Re: Awful function pointer conversion function template
  • Index(es):
    • Date
    • Thread