C++: Do not wrap quoted text to the next line

Wrapping breaks the highlighting in VSCode, making the QLDoc
difficult to read.
This commit is contained in:
Jeroen Ketema
2024-09-25 09:43:05 +02:00
parent 590e93d8ed
commit 29061a08ad

View File

@@ -39,8 +39,8 @@ class Type extends Locatable, @type {
/**
* Gets a specifier of this type, recursively looking through `typedef` and
* `decltype`. For example, in the context of `typedef const int *restrict
* t`, the type `volatile t` has specifiers `volatile` and `restrict` but not
* `decltype`. For example, in the context of `typedef const int *restrict t`,
* the type `volatile t` has specifiers `volatile` and `restrict` but not
* `const` since the `const` is attached to the type being pointed to rather
* than the pointer itself.
*/