We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae73d3 commit 9c3b0ceCopy full SHA for 9c3b0ce
README.md
@@ -6,7 +6,7 @@ This is placeholder branch for new version of CTRE.
6
7
#### Extracting number from input
8
```c++
9
-std::optional<std::string_view> extract_number(std::string_view s) neoxcept {
+std::optional<std::string_view> extract_number(std::string_view s) noexcept {
10
using namespace ctre::literals;
11
if (auto m = "^[a-z]++([0-9]++)$"_pcre.match(s)) {
12
return m.get<1>().to_view();
@@ -62,4 +62,4 @@ constexpr std::optional<lex_item> lexer(std::string_view v) noexcept {
62
## Supported compilers
63
64
* clang 5.0+
65
-* gcc 7.2+
+* gcc 7.2+
0 commit comments