diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2018-10-26 17:27:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-26 17:27:45 -0400 |
| commit | 56c9de0ae0f0b37d0c5f50f2b39d6c18362642bb (patch) | |
| tree | 96fd5e73670631b275ea16aba8f638e0ae31ac11 /source | |
| parent | 36742ae0ad8b11e5ae6c2c0c7531b272800e5ff6 (diff) | |
Premake improvements (#696)
* Make CacheFileSystem dtor virtual.
* Fixing problems around build.linux and windows intermediate files being placed in obj.
Diffstat (limited to 'source')
| -rw-r--r-- | source/slang/slang-file-system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-file-system.h b/source/slang/slang-file-system.h index c1358654a..aa216e6b0 100644 --- a/source/slang/slang-file-system.h +++ b/source/slang/slang-file-system.h @@ -105,7 +105,7 @@ class CacheFileSystem: public ISlangFileSystemExt /// Ctor CacheFileSystem(ISlangFileSystem* fileSystem, bool useSimplifyForCanonicalPath = false); /// Dtor - ~CacheFileSystem(); + virtual ~CacheFileSystem(); static CompressedResult toCompressedResult(Result res); static Result toResult(CompressedResult compRes) { return s_compressedResultToResult[int(compRes)]; } |
