Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Welcome Guest | Log In | Register | Benefits
Channels ▼
RSS

C++ Theory and Practice


September 1997/C++ Theory and Practice/Listing 2

Listing 2: The header that causes the name hiding in Listing 1

// lib.h

inline
char const *foo()
    {
    return "function";
    }

//End of File

Related Reading


More Insights