Re: cc file names

2011-05-10 Thread Alex Rousskov
On 05/10/2011 01:18 PM, Markus Moeller wrote:
> Hi
> 
>  would it be possible to avoid naming source files in different
> directories the same. It confuses my ddd/gdb debugger and it will always
> pickup for example ./src/auth/UserRequest.cc instead of
> ./src/auth/negotiate/UserRequest.cc.
> 
> find . -name UserRequest.cc
> ./src/auth/ntlm/UserRequest.cc
> ./src/auth/negotiate/UserRequest.cc
> ./src/auth/basic/UserRequest.cc
> ./src/auth/digest/UserRequest.cc
> ./src/auth/UserRequest.cc
> 
> or is this a ddd issue ?

I am not sure whether this is a ddd bug, misconfiguration, or something
else, but please keep in mind that it is also rather annoying and time
consuming for some of us to deal with duplication of information in file
names.

In the ideal world, all tools would understand that there are such
things as directories. For now, we have to pick between some tools
getting confused and some developers wasting time on information
duplication (with all its side effects).


Cheers,

Alex.


cc file names

2011-05-10 Thread Markus Moeller

Hi

 would it be possible to avoid naming source files in different directories 
the same. It confuses my ddd/gdb debugger and it will always pickup for 
example ./src/auth/UserRequest.cc instead of 
./src/auth/negotiate/UserRequest.cc.


find . -name UserRequest.cc
./src/auth/ntlm/UserRequest.cc
./src/auth/negotiate/UserRequest.cc
./src/auth/basic/UserRequest.cc
./src/auth/digest/UserRequest.cc
./src/auth/UserRequest.cc

or is this a ddd issue ?

Markus