Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Commits
934ae198
Commit
934ae198
authored
Jun 24, 2019
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Remove useless traits
parent
50f93170
No related branches found
No related tags found
1 merge request
!37
Feature/language
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/language/ASTNodeDataType.hpp
+0
-45
0 additions, 45 deletions
src/language/ASTNodeDataType.hpp
with
0 additions
and
45 deletions
src/language/ASTNodeDataType.hpp
+
0
−
45
View file @
934ae198
...
...
@@ -17,51 +17,6 @@ enum class DataType
void_t
=
9999
};
template
<
DataType
data_type
>
struct
DataTypeTraits
;
template
<
>
struct
DataTypeTraits
<
DataType
::
undefined_t
>
{
using
Type
=
std
::
void_t
<>
;
};
template
<
>
struct
DataTypeTraits
<
DataType
::
bool_t
>
{
using
Type
=
bool
;
};
template
<
>
struct
DataTypeTraits
<
DataType
::
unsigned_int_t
>
{
using
Type
=
uint64_t
;
};
template
<
>
struct
DataTypeTraits
<
DataType
::
int_t
>
{
using
Type
=
int64_t
;
};
template
<
>
struct
DataTypeTraits
<
DataType
::
double_t
>
{
using
Type
=
double
;
};
template
<
>
struct
DataTypeTraits
<
DataType
::
typename_t
>
{
using
Type
=
std
::
void_t
<>
;
};
template
<
>
struct
DataTypeTraits
<
DataType
::
void_t
>
{
using
Type
=
std
::
void_t
<>
;
};
std
::
string
dataTypeName
(
const
DataType
&
data_type
);
DataType
dataTypePromotion
(
const
DataType
&
data_type_1
,
const
DataType
&
data_type_2
);
...
...
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