forked from OSchip/llvm-project
ThinLTO: initialize variables
From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 266964
This commit is contained in:
parent
340ad0a0c9
commit
9df9a9cd53
|
@ -110,8 +110,8 @@ public:
|
|||
struct CachingOptions {
|
||||
std::string Path;
|
||||
int PruningInterval = -1; // seconds, -1 to disable pruning
|
||||
unsigned int Expiration; // seconds.
|
||||
unsigned MaxPercentageOfAvailableSpace; // percentage.
|
||||
unsigned int Expiration = 0; // seconds.
|
||||
unsigned MaxPercentageOfAvailableSpace = 0; // percentage.
|
||||
};
|
||||
|
||||
/// Provide a path to a directory where to store the cached files for
|
||||
|
|
Loading…
Reference in New Issue