Index: include/AdblockPlus/FileSystem.h |
=================================================================== |
--- a/include/AdblockPlus/FileSystem.h |
+++ b/include/AdblockPlus/FileSystem.h |
@@ -26,22 +26,22 @@ |
namespace AdblockPlus |
{ |
class FileSystem |
{ |
public: |
struct StatResult |
{ |
- inline StatResult() |
+ StatResult() |
{ |
exists = false; |
isDirectory = false; |
isFile = false; |
- lastModified = false; |
+ lastModified = 0; |
} |
bool exists; |
bool isDirectory; |
bool isFile; |
int64_t lastModified; |
}; |