Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hurstel
CGoGN
Commits
4491d791
Commit
4491d791
authored
Jul 18, 2012
by
Sylvain Thery
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add long long to recognized type
parent
5e5d221c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
include/Utils/nameTypes.h
include/Utils/nameTypes.h
+4
-0
No files found.
include/Utils/nameTypes.h
View file @
4491d791
...
...
@@ -46,6 +46,10 @@ template <> inline std::string nameOfType(const int& v) { return "int"; }
template
<
>
inline
std
::
string
nameOfType
(
const
long
int
&
v
)
{
return
"long int"
;
}
template
<
>
inline
std
::
string
nameOfType
(
const
long
long
&
v
)
{
return
"long long"
;
}
template
<
>
inline
std
::
string
nameOfType
(
const
unsigned
long
long
&
v
)
{
return
"long long"
;
}
template
<
>
inline
std
::
string
nameOfType
(
const
unsigned
char
&
v
)
{
return
"unsigned char"
;
}
template
<
>
inline
std
::
string
nameOfType
(
const
unsigned
short
int
&
v
)
{
return
"unsigned short int"
;
}
...
...
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