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 c89da7c commit 6c6c176Copy full SHA for 6c6c176
docs/error-messages/compiler-errors-2/compiler-error-c3550.md
@@ -22,9 +22,11 @@ The following sample generates C3550:
22
decltype(auto)* func1(); // C3550
23
decltype(auto)& func2(); // C3550
24
decltype(auto)&& func3(); // C3550
25
+
26
+auto* func4(); // OK
27
```
28
-To resolve the error remove all illegal qualification on `decltype(auto)`.
29
+To resolve the error remove all illegal qualification on `decltype(auto)`. For instance, `decltype(auto)* func1()` can be turned into `auto* func1()`.
30
31
## See also
32
0 commit comments