From e5a8c06780ee535e1aacc52935f86e1e71d04f98 Mon Sep 17 00:00:00 2001 From: Graeme Hill Date: Sun, 18 Jun 2017 11:27:14 -0700 Subject: [PATCH] Remove c_str docs --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index c72c000..ae44566 100644 --- a/README.md +++ b/README.md @@ -136,13 +136,6 @@ There is also a `str()` function that returns a `std::string`: std::string guidStr = xg::newGuid().str(); ``` -Or use `c_str()` to get a `char *`: - -```cpp -auto g = xg::newGuid(); -std::string guidStr = g.c_str(); -``` - ### Creating a guid from raw bytes It's unlikely that you will need this, but this is done within the library