aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorclyne <clyne@bitgloo.com>2020-06-26 16:43:20 -0400
committerGitHub <noreply@github.com>2020-06-26 16:43:20 -0400
commit4cffc3ffbc96df9fbaabf67bf82652340b6af856 (patch)
tree4f19adeb863952284fb92c944f480f8cf1f42db2
parent37b7cd171543152a7569bfa63b6786ec21198f40 (diff)
Remove resolved issue with GCC/C++17
-rw-r--r--README.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/README.md b/README.md
index 9f9efe1..ce688fe 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,6 @@
* Convert any integral type to a string at compile-time
* Supports converting to any base between 2 and 36 inclusive
* No external dependencies, only includes `type_traits` for template parameter checking
-* Works best in C++20 GCC or C++17/20 Clang
**How to use:**
@@ -22,10 +21,6 @@ With `to_string`, all that will be found in program disassembly are the resultin
Try it [on Compiler Explorer](https://godbolt.org/z/T-MFoh).
-**Known issues:**
-
-* With C++17 GCC, `to_string` must be used to initialize variables; otherwise, the integer-string conversion is done at run-time.
-
# How it works
The basic structure of `to_string` is shown below: