diff options
Diffstat (limited to 'EssentialPostMVPFeatures.md')
| -rw-r--r-- | EssentialPostMVPFeatures.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EssentialPostMVPFeatures.md b/EssentialPostMVPFeatures.md index 08010e9..3cc06de 100644 --- a/EssentialPostMVPFeatures.md +++ b/EssentialPostMVPFeatures.md @@ -45,8 +45,8 @@ modes for C++: * Compiler transforms `throw` to `abort()`. * Compiler-enforced `-fno-exceptions` mode (note [caveats][]). * Compiler conversion of exceptions to branching at all callsites. -* In a Web environment, exception handling can be emulated using JavaScript - exception handling. +* In a Web environment exception handling can be emulated using JavaScript + exception handling, which can provide correct semantics but isn't fast. These modes are unfortunate for code bases which rely on C++ exception handling, but are perfectly acceptable for C code, or for C++ code which avoids |
