home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!caen!uflorida!math.ufl.edu!maple.circa.ufl.edu!X9999BVJ
- From: x9999bvj@maple.circa.ufl.edu
- Newsgroups: comp.lang.c++
- Subject: & of inline functions
- Message-ID: <1992Dec13.185310.20140@math.ufl.edu>
- Date: 13 Dec 92 18:53:10 GMT
- Sender: news@math.ufl.edu
- Reply-To: X9999BVJ@oak.circa.ufl.edu
- Organization: Center for Instructional and Research Computing Activities
- Lines: 18
-
-
- What is the official method for handling taking the address of an inline
- function? For example, if you do this:
-
- inline void Hello( void )
- {
- puts("Hello");
- }
-
- void HelloFnc( void (*fnc)(void) )
- {
- fnc();
- }
-
- void main( void )
- {
- HelloFnc( Hello );
- }
-