summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2019-01-05 21:51:51 +0100
committerCorinna Vinschen <corinna@vinschen.de>2019-01-06 20:30:14 +0100
commit26d953689337a93c31c55083c2073f309ba33c38 (patch)
tree69906b7f5faaf888f0472bddc8cdac3836d4cb4d
parentc208ecd540c02773b0d25246e0fbaadcd416600a (diff)
downloadcygnal-26d953689337a93c31c55083c2073f309ba33c38.tar.gz
cygnal-26d953689337a93c31c55083c2073f309ba33c38.tar.bz2
cygnal-26d953689337a93c31c55083c2073f309ba33c38.zip
Cygwin: path_conv: reorder private method declarations
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r--winsup/cygwin/path.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index 3f84da227..b244b57b7 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -143,15 +143,19 @@ class path_conv
DWORD fileattr;
ULONG caseinsensitive;
fs_info fs;
+
PWCHAR wide_path;
UNICODE_STRING uni_path;
- void add_ext_from_sym (symlink_info&);
DWORD symlink_length;
const char *path;
unsigned path_flags;
const char *suffix;
const char *posix_path;
path_conv_handle conv_handle;
+
+ void add_ext_from_sym (symlink_info&);
+ char *modifiable_path () {return (char *) path;}
+
public:
int error;
device dev;
@@ -407,8 +411,6 @@ class path_conv
inline const char *get_posix () const { return posix_path; }
void __reg2 set_posix (const char *);
DWORD get_symlink_length () { return symlink_length; };
- private:
- char *modifiable_path () {return (char *) path;}
};
/* Symlink marker */