Files
compute-runtime/shared/source/compiler_interface/windows/os_compiler_cache_helper.cpp
Kacper Kasper 996c261430 fix: OclocIgcFacade->getIgcRevision() could return nullptr
* Make sure igcRevision is always initialized.
* Improve coverage.

Signed-off-by: Kacper Kasper <kacper.k.kasper@intel.com>
2023-08-31 12:57:27 +02:00

20 lines
431 B
C++

/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/compiler_interface/os_compiler_cache_helper.h"
namespace NEO {
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader) {
return false;
}
time_t getFileModificationTime(const std::string &path) {
return 0;
}
size_t getFileSize(const std::string &path) {
return 0;
}
} // namespace NEO