Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
45b6babd
Commit
45b6babd
authored
Aug 17, 2018
by
Marko Myllynen
Committed by
yonghong-song
Aug 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unsiggned typo introduced in commit
7c489469
(#1933)
Fix unsiggned typo introduced in tp_frontend_action.cc
parent
3835b2d8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/cc/frontends/clang/tp_frontend_action.cc
src/cc/frontends/clang/tp_frontend_action.cc
+2
-2
No files found.
src/cc/frontends/clang/tp_frontend_action.cc
View file @
45b6babd
...
...
@@ -114,7 +114,7 @@ static inline field_kind_t _get_field_kind(string const& line,
if
(
field_type
==
"char"
||
field_type
==
"short"
||
field_type
==
"int8_t"
||
field_type
==
"int16_t"
)
field_type
=
"s32"
;
if
(
field_type
==
"unsigned char"
||
field_type
==
"unsig
g
ned short"
||
if
(
field_type
==
"unsigned char"
||
field_type
==
"unsigned short"
||
field_type
==
"uint8_t"
||
field_type
==
"uint16_t"
)
field_type
=
"u32"
;
}
else
if
(
size
==
8
)
{
...
...
@@ -122,7 +122,7 @@ static inline field_kind_t _get_field_kind(string const& line,
field_type
==
"int8_t"
||
field_type
==
"int16_t"
||
field_type
==
"int32_t"
)
field_type
=
"s64"
;
if
(
field_type
==
"unsigned char"
||
field_type
==
"unsig
g
ned short"
||
if
(
field_type
==
"unsigned char"
||
field_type
==
"unsigned short"
||
field_type
==
"unsigned int"
||
field_type
==
"uint8_t"
||
field_type
==
"uint16_t"
||
field_type
==
"uint32_t"
)
field_type
=
"u64"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment