diff options
Diffstat (limited to 'DEVELOPING.md')
-rw-r--r-- | DEVELOPING.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/DEVELOPING.md b/DEVELOPING.md index c5c5c53f8a..f70d1f94ea 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -110,3 +110,14 @@ constexpr bool test2(int i) { - Either remove `constexpr` specifier or replace it with `inline` in case of functions + + +## [Polymorphic lambdas](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68278) + +GCC 5.2.0 crashes with polymorphic lambdas and this version of the compiler +is currently used in Qt Automotive. Luckily polymorphic lambdas are rarely +used/needed but we had one incident fixed by #9665. + +### Workarounds + +- Copy & Paste™ the code. |