We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just had the following code:
#include <string> #include <vector> int main() { using namespace std::string_literals; std::vector<std::string> foo{"foo"s, "bar"s}; }
...and cppinsights gave me the following output:
#include <string> #include <vector> int main() { using namespace std::string_literals; std::vector<std::string> foo{ std::initializer_list<std::basic_string<char> >{ std::operator""s("foo", 3ul), std::operator""s(std::operator""s("foo", 3ul) 3std::operator""s("bar", 3ul)}; }
Note especially the 3std.
3std
The text was updated successfully, but these errors were encountered:
Hi,
thanks for reporting it.
Sorry, something went wrong.
ae12346
Merge pull request #29 from andreasfertig/fixIssue28
b143887
Fixed #28: Multiple matchers rewrote a statement.
andreasfertig
No branches or pull requests
I just had the following code:
...and cppinsights gave me the following output:
Note especially the
3std
.The text was updated successfully, but these errors were encountered: