From 343264944ae1ef28740b9da01742c53cae3712dc Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Sat, 17 Jan 2015 14:28:06 -0700 Subject: [PATCH] Update releasenotes.md --- releasenotes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/releasenotes.md b/releasenotes.md index 506a9c9..e88dd36 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -5,6 +5,7 @@ Current Version: 5.6.0 ### Changes since 5.5.1 * Throw exception on integer divide by 0 * Add optional type specification to function declarations + ``` def func(int i, j, double k) { // i must be an int. @@ -12,7 +13,7 @@ Current Version: 5.6.0 // k must be a double // normal conversion rules still apply } - ``` + ``` * Many minor fixes for compiler warnings * Add support for `std::future` and `std::async` ```