Revision efdbb954c57b89362e390f955d45f90e59d66878 authored by Yong He on 30 May 2024, 01:01:11 UTC, committed by GitHub on 30 May 2024, 01:01:11 UTC
* Handle type check cache update on extensions more gracefully.

* Correctness fix.

* Cache implcit cast overload resolution results.

* Fix.

* More optimizations.

* Cache implicit default ctor resolution.

* Disable redundancy removal.

* Fix.

* Fix test.

* Fix.

* Correctness fix.

* Fix.

* Fix,

* Fix test.

* Small tweak.
1 parent 83f176b
Raw File
make-slang-tag-version.bat
@echo off
:: Generate slang version files 
git describe --tags > slang-tag-version.txt
set /p SLANG_TAG_VERSION=<slang-tag-version.txt
echo #define SLANG_TAG_VERSION "%SLANG_TAG_VERSION%" > slang-tag-version.h
back to top