Commit b94001f
authored
Fix regal build after recent clang change. NFC (#21885)
There appears to be a typo in Regal's linear.h:
```
linear.h:585:26: error: no member named 'negate' in 'Vec4<T>'; did you mean 'Negate'?
585 | Vec4 rv(*this); rv.negate(); return rv;
| ^~~~~~
| Negate
linear.h:534:11: note: 'Negate' declared here
534 | void Negate() {
```
This was not an issue until llvm/llvm-project#90152
landed.
Adding `-fdelayed-template-parsing` seems to fix the issue.1 parent 42fd234 commit b94001f
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
107 | 107 | | |
108 | 108 | | |
109 | 109 | | |
110 | | - | |
| 110 | + | |
| 111 | + | |
111 | 112 | | |
112 | 113 | | |
113 | 114 | | |
| |||
0 commit comments