Mailing Lists: Apple Mailing Lists
Image of Mac OS face in stamp
Awful function pointer conversion function template
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Awful function pointer conversion function template



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



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2011 Apple Inc. All rights reserved.