diff options
Diffstat (limited to 'base/sys_info.h')
-rw-r--r-- | base/sys_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/sys_info.h b/base/sys_info.h index 00436f5..3d6a16a6 100644 --- a/base/sys_info.h +++ b/base/sys_info.h @@ -24,7 +24,8 @@ class SysInfo { return static_cast<int>(AmountOfPhysicalMemory() / 1024 / 1024); } - // Return the available disk space in bytes on the volume containing |path|. + // Return the available disk space in bytes on the volume containing |path|, + // or -1 on failure. static int64 AmountOfFreeDiskSpace(const std::wstring& path); }; |