From b924bed254af53a3f61ae36c746785eeadae9559 Mon Sep 17 00:00:00 2001 From: thukydides Date: Fri, 11 Nov 2016 20:35:19 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd5cc70..4f00064 100644 --- a/README.md +++ b/README.md @@ -370,9 +370,10 @@ m.insert(std::move(e)); ### Binary literals Binary literals provide a convenient way to represent a base-2 number. +It is possible to separate digits with `'`. ```c++ 0b110 // == 6 -0b11111111 // == 255 +0b1111'1111 // == 255 ``` ### Generic lambda expressions