diff options
-rw-r--r-- | doc/extensions.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/extensions.html b/doc/extensions.html index 306943b7..e3ab081e 100644 --- a/doc/extensions.html +++ b/doc/extensions.html | |||
@@ -353,7 +353,9 @@ the toolchain used to compile LuaJIT: | |||
353 | on the C stack. The contents of the C++ exception object | 353 | on the C stack. The contents of the C++ exception object |
354 | pass through unmodified.</li> | 354 | pass through unmodified.</li> |
355 | <li>Lua errors can be caught on the C++ side with <tt>catch(...)</tt>. | 355 | <li>Lua errors can be caught on the C++ side with <tt>catch(...)</tt>. |
356 | The corresponding Lua error message can be retrieved from the Lua stack.</li> | 356 | The corresponding Lua error message can be retrieved from the Lua stack.<br> |
357 | For MSVC for Windows 64 bit this requires compilation of your C++ code | ||
358 | with <tt>/EHa</tt>.</li> | ||
357 | <li>Throwing Lua errors across C++ frames is safe. C++ destructors | 359 | <li>Throwing Lua errors across C++ frames is safe. C++ destructors |
358 | will be called.</li> | 360 | will be called.</li> |
359 | </ul> | 361 | </ul> |