I just started using C++ again and found the following code explorer problem in
version 4.5.1. I found that functions defined within a namespace do not show in
the code explorer. I upgraded to the latest 4.5.3 beta version and still have
the issue.

The following is sample code that will show the problem. The only function to
show in the code explorer is "Show" which is defined outside the namespace.

--- 
#include "Sample.h"

namespace nspace
{

Sample::Sample(void)
{
        fname_ = "";
}

Sample::~Sample(void)
{
}

int & Sample::Number()
{
        return number_;
}

}// nspace

void Show()
{
}

-- 
<http://forum.pspad.com/read.php?6,38124,38429>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem