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 7b4c73a commit 3b3fca0Copy full SHA for 3b3fca0
cpp/common/src/codingstandards/cpp/Cpp14Literal.qll
@@ -100,6 +100,8 @@ module Cpp14Literal {
100
/**
101
* Gets the character of this literal. For example `L'a'` has character `"a"`.
102
*/
103
- string getCharacter() { result = this.getValueText().regexpCapture("(?s)\\s*(L|u|U)?'(.*)'", 1) }
+ string getCharacter() {
104
+ result = this.getValueText().regexpCapture("(?s)\\s*(L|u|U)?'(.*)'", 1)
105
+ }
106
}
107
0 commit comments