diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-08-15 15:31:19 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-08-15 15:31:19 +0000 |
commit | 6d70255fe8fa15d41c3e15e0fdb273da00e16702 (patch) | |
tree | bba735462fb3ba4efaf5b645ec52030def9fc535 /winsup/cygwin/path.h | |
parent | d85bcb45425839ba3b1bbee764f14703eca09233 (diff) | |
download | cygnal-6d70255fe8fa15d41c3e15e0fdb273da00e16702.tar.gz cygnal-6d70255fe8fa15d41c3e15e0fdb273da00e16702.tar.bz2 cygnal-6d70255fe8fa15d41c3e15e0fdb273da00e16702.zip |
* fhandler_disk_file.cc (fhandler_disk_file::link): Drop superfluous
test for trailing dot.
* path.h (path_conv::operator []): Remove.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r-- | winsup/cygwin/path.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 59734512f..32634af82 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -256,7 +256,6 @@ class path_conv operator const char *() {return path;} operator DWORD &() {return fileattr;} operator int () {return fileattr; } - char operator [](int i) const {return path[i];} path_conv &operator =(path_conv &pc) { memcpy (this, &pc, pc.size ()); |