Here is an example of the bug:
I start with this string:
Code: Select all
build_dir_tree (target[l]) ;
Code: Select all
.c_str()
Code: Select all
build_dir_tree (target[l].c_str() ;
This is *really* getting to be a headache at the moment, as I'm going back through my old c++ programs and converting my old string handling functions to use wstring classes...
So I am adding a *lot* of
Code: Select all
.c_str()
Is there anything that I can do, to eliminate that paren deletion (other than completely disabling paren completion) ??