1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added an historic entry to the breaking changes doc

This commit is contained in:
Tom Poole 2018-11-05 08:32:36 +00:00
parent 2593d5e264
commit fcc0ed9ffa

View file

@ -623,6 +623,25 @@ truncating those numbers.
Version 5.1.0
=============
Change
------
The JUCE_COMPILER_SUPPORTS_LAMBDAS preprocessor macro has been removed.
Possible Issues
---------------
If your project is using JUCE_COMPILER_SUPPORTS_LAMBDAS in your source code
then it will likely evaluate to "false" and you could end up unnecessarily
using code paths which avoid lambda functions.
Workaround
----------
Remove the usage of JUCE_COMPILER_SUPPORTS_LAMBDAS from your code.
Rationale
---------
Lambda functions are now available on all platforms that JUCE supports.
Change
------
The option to set the C++ language standard is now located in the project