Guest User

Untitled

a guest
Jul 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. Index: lib/System/Win32/Path.inc
  2. ===================================================================
  3. --- lib/System/Win32/Path.inc (revision 89845)
  4. +++ lib/System/Win32/Path.inc (working copy)
  5. @@ -358,8 +358,10 @@
  6. }
  7.  
  8. bool
  9. -Path::isSpecialFile() const {
  10. - return false;
  11. +Path::isRegularFile() const {
  12. + if (Path::isDirectory())
  13. + return false;
  14. + return true;
  15. }
  16.  
  17. std::string
Add Comment
Please, Sign In to add comment