Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-08-16 19:07:42 +0400
committerCorinna Vinschen <corinna@vinschen.de>2007-08-16 19:07:42 +0400
commit29992bf3dad77669ffbedd92d3075a5fb1b1a1ae (patch)
tree6328ddc2468de168a4eddfe061babb84177fd960 /winsup/cygwin/path.h
parent29fec364c0ccf362af6cc232dbc2f3cbf3ec877e (diff)
* path.h (path_conv::operator char *): Delete.
(path_conv::operator const char *): Delete. * dlfcn.cc: Throughout, replace path_conv::operator char * and path_conv::operator const char * by call to path_conv::get_win32 for easier transition to UNICODE_PATHs. * fhandler_socket.cc: Ditto. * hookapi.cc: Ditto. * path.cc: Ditto. * spawn.cc: Ditto. * syscalls.cc: Ditto. * uinfo.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r--winsup/cygwin/path.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index 32634af82..eb3fb5d74 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -252,8 +252,6 @@ class path_conv
POBJECT_ATTRIBUTES get_object_attr (OBJECT_ATTRIBUTES &attr,
SECURITY_ATTRIBUTES &sa);
PWCHAR get_wide_win32_path (PWCHAR wc);
- operator char *() {return path;}
- operator const char *() {return path;}
operator DWORD &() {return fileattr;}
operator int () {return fileattr; }
path_conv &operator =(path_conv &pc)