diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-08 20:12:17 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-08 20:12:17 +0000 |
commit | 8cb650eb29c31ddc035cf03af3a486aefe5adb47 (patch) | |
tree | 51f5654f50581016166c0c34293163b959c9fa25 /ace/Filecache.cpp | |
parent | 350f0e4ac7c359a72da7e21392b01e6b2abf5e70 (diff) | |
download | ATCD-8cb650eb29c31ddc035cf03af3a486aefe5adb47.tar.gz |
commented out unused constants [RW]COPY_FLAGS
Diffstat (limited to 'ace/Filecache.cpp')
-rw-r--r-- | ace/Filecache.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ace/Filecache.cpp b/ace/Filecache.cpp index 1a99d6afaa8..ff3a0fe8a79 100644 --- a/ace/Filecache.cpp +++ b/ace/Filecache.cpp @@ -11,18 +11,18 @@ static const int W_MASK = S_IRUSR|S_IRGRP|S_IROTH|S_IWUSR|S_IWGRP|S_IWOTH; static const int READ_FLAGS = (FILE_FLAG_SEQUENTIAL_SCAN | FILE_FLAG_OVERLAPPED | O_RDONLY); -static const int RCOPY_FLAGS = (FILE_FLAG_SEQUENTIAL_SCAN | - O_RDONLY); +// static const int RCOPY_FLAGS = (FILE_FLAG_SEQUENTIAL_SCAN | +// O_RDONLY); static const int WRITE_FLAGS = (FILE_FLAG_SEQUENTIAL_SCAN | FILE_FLAG_OVERLAPPED | O_RDWR | O_CREAT | O_TRUNC); -static const int WCOPY_FLAGS = (FILE_FLAG_SEQUENTIAL_SCAN | - O_RDWR | O_CREAT | O_TRUNC); +// static const int WCOPY_FLAGS = (FILE_FLAG_SEQUENTIAL_SCAN | +// O_RDWR | O_CREAT | O_TRUNC); #else static const int READ_FLAGS = O_RDONLY; -static const int RCOPY_FLAGS = O_RDONLY; +// static const int RCOPY_FLAGS = O_RDONLY; static const int WRITE_FLAGS = O_RDWR | O_CREAT | O_TRUNC; -static const int WCOPY_FLAGS = O_RDWR | O_CREAT | O_TRUNC; +// static const int WCOPY_FLAGS = O_RDWR | O_CREAT | O_TRUNC; #endif /* ACE_WIN32 */ // static data members |