Changeset 1038 for cpp/common
- Timestamp:
- 11/30/20 03:42:04 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/virtfile/stdinoutfilesystem.cpp
r928 r1038 6 6 #include "stdiofile.h" 7 7 8 8 9 VirtFILE *StdInOutFileSystem::Vfopen(const char* path, const char*mode) 9 10 { 11 #ifndef NO_STD_IN_OUT_ERR 10 12 if (isStdInOutPath(path)) 11 13 { … … 15 17 return new StdioFILEDontClose(stdout); 16 18 } 19 #endif 17 20 return (chain != NULL) ? chain->Vfopen(path, mode) : NULL; 18 21 }
Note: See TracChangeset
for help on using the changeset viewer.