Skip to content

Commit 3b3fca0

Browse files
committed
Format module
1 parent 7b4c73a commit 3b3fca0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cpp/common/src/codingstandards/cpp/Cpp14Literal.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ module Cpp14Literal {
100100
/**
101101
* Gets the character of this literal. For example `L'a'` has character `"a"`.
102102
*/
103-
string getCharacter() { result = this.getValueText().regexpCapture("(?s)\\s*(L|u|U)?'(.*)'", 1) }
103+
string getCharacter() {
104+
result = this.getValueText().regexpCapture("(?s)\\s*(L|u|U)?'(.*)'", 1)
105+
}
104106
}
105107
}

0 commit comments

Comments
 (0)