Browse Source

Added an historic entry to the breaking changes doc

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
fcc0ed9ffa
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      BREAKING-CHANGES.txt

+ 19
- 0
BREAKING-CHANGES.txt 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


Loading…
Cancel
Save