| 889 | } |
| 890 | |
| 891 | String BfCodeGen::GetBuildValue(const StringImpl& buildDir, const StringImpl& key) |
| 892 | { |
| 893 | AutoCrit autoCrit(mCacheCritSect); |
| 894 | BfCodeGenDirectoryData* dirCache = GetDirCache(buildDir); |
| 895 | return dirCache->GetValue(key); |
| 896 | } |
| 897 | |
| 898 | void BfCodeGen::SetBuildValue(const StringImpl& buildDir, const StringImpl & key, const StringImpl & value) |
| 899 | { |
no test coverage detected