File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed
cpp/common/src/codingstandards/cpp Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -14,25 +14,17 @@ string getTruncatedLiteralText(Literal l) {
14
14
}
15
15
16
16
class WideStringLiteral extends StringLiteral {
17
- WideStringLiteral ( ) {
18
- this .getValueText ( ) .regexpMatch ( "(?s)\\s*L\".*" )
19
- }
17
+ WideStringLiteral ( ) { this .getValueText ( ) .regexpMatch ( "(?s)\\s*L\".*" ) }
20
18
}
21
19
22
20
class Utf8StringLiteral extends StringLiteral {
23
- Utf8StringLiteral ( ) {
24
- this .getValueText ( ) .regexpMatch ( "(?s)\\s*u8\".*" )
25
- }
21
+ Utf8StringLiteral ( ) { this .getValueText ( ) .regexpMatch ( "(?s)\\s*u8\".*" ) }
26
22
}
27
23
28
24
class Utf16StringLiteral extends StringLiteral {
29
- Utf16StringLiteral ( ) {
30
- this .getValueText ( ) .regexpMatch ( "(?s)\\s*u\".*" )
31
- }
25
+ Utf16StringLiteral ( ) { this .getValueText ( ) .regexpMatch ( "(?s)\\s*u\".*" ) }
32
26
}
33
27
34
28
class Utf32StringLiteral extends StringLiteral {
35
- Utf32StringLiteral ( ) {
36
- this .getValueText ( ) .regexpMatch ( "(?s)\\s*U\".*" )
37
- }
38
- }
29
+ Utf32StringLiteral ( ) { this .getValueText ( ) .regexpMatch ( "(?s)\\s*U\".*" ) }
30
+ }
You can’t perform that action at this time.
0 commit comments