Skip to content

Commit 29061a0

Browse files
committed
C++: Do not wrap quoted text to the next line
Wrapping breaks the highlighting in VSCode, making the QLDoc difficult to read.
1 parent 590e93d commit 29061a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/lib/semmle/code/cpp/Type.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class Type extends Locatable, @type {
3939

4040
/**
4141
* Gets a specifier of this type, recursively looking through `typedef` and
42-
* `decltype`. For example, in the context of `typedef const int *restrict
43-
* t`, the type `volatile t` has specifiers `volatile` and `restrict` but not
42+
* `decltype`. For example, in the context of `typedef const int *restrict t`,
43+
* the type `volatile t` has specifiers `volatile` and `restrict` but not
4444
* `const` since the `const` is attached to the type being pointed to rather
4545
* than the pointer itself.
4646
*/

0 commit comments

Comments
 (0)