Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
d1c11df4
There was an error fetching the commit references. Please try again later.
Commit
d1c11df4
authored
7 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Added more unsigned types to param-types.h
parent
8b0a9960
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/TNL/param-types.h
+3
-0
3 additions, 0 deletions
src/TNL/param-types.h
with
3 additions
and
0 deletions
src/TNL/param-types.h
+
3
−
0
View file @
d1c11df4
...
...
@@ -22,8 +22,11 @@ template<> inline String getType< bool >() { return String( "bool" ); };
template
<
>
inline
String
getType
<
short
int
>
()
{
return
String
(
"short int"
);
};
template
<
>
inline
String
getType
<
int
>
()
{
return
String
(
"int"
);
};
template
<
>
inline
String
getType
<
long
int
>
()
{
return
String
(
"long int"
);
};
template
<
>
inline
String
getType
<
unsigned
short
>
()
{
return
String
(
"unsigned short"
);
};
template
<
>
inline
String
getType
<
unsigned
int
>
()
{
return
String
(
"unsigned int"
);
};
template
<
>
inline
String
getType
<
unsigned
long
>
()
{
return
String
(
"unsigned long"
);
};
template
<
>
inline
String
getType
<
char
>
()
{
return
String
(
"char"
);
};
template
<
>
inline
String
getType
<
unsigned
char
>
()
{
return
String
(
"unsigned char"
);
};
template
<
>
inline
String
getType
<
float
>
()
{
return
String
(
"float"
);
};
template
<
>
inline
String
getType
<
double
>
()
{
return
String
(
"double"
);
};
template
<
>
inline
String
getType
<
long
double
>
()
{
return
String
(
"long double"
);
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment