Skip to content

Commit

Permalink
C++: Do not wrap quoted text to the next line
Browse files Browse the repository at this point in the history
Wrapping breaks the highlighting in VSCode, making the QLDoc
difficult to read.
  • Loading branch information
jketema committed Sep 25, 2024
1 parent 590e93d commit 29061a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/ql/lib/semmle/code/cpp/Type.qll
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit 29061a0

Please sign in to comment.