Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
biboumi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
88
Issues
88
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
louiz’
biboumi
Commits
33a5f135
Commit
33a5f135
authored
Jan 24, 2018
by
louiz’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a variable template usage
Because it’s only supported in gcc>=5.0
parent
23e51e81
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
15 deletions
+12
-15
src/database/row.hpp
src/database/row.hpp
+2
-2
src/utils/is_one_of.hpp
src/utils/is_one_of.hpp
+3
-6
tests/utils.cpp
tests/utils.cpp
+7
-7
No files found.
src/database/row.hpp
View file @
33a5f135
...
...
@@ -30,13 +30,13 @@ struct Row
}
template
<
bool
Coucou
=
true
>
void
save
(
std
::
unique_ptr
<
DatabaseEngine
>&
db
,
typename
std
::
enable_if
<!
is_one_of
<
Id
,
T
...
>
&&
Coucou
>::
type
*
=
nullptr
)
void
save
(
std
::
unique_ptr
<
DatabaseEngine
>&
db
,
typename
std
::
enable_if
<!
is_one_of
<
Id
,
T
...
>
::
value
&&
Coucou
>::
type
*
=
nullptr
)
{
this
->
insert
(
*
db
);
}
template
<
bool
Coucou
=
true
>
void
save
(
std
::
unique_ptr
<
DatabaseEngine
>&
db
,
typename
std
::
enable_if
<
is_one_of
<
Id
,
T
...
>
&&
Coucou
>::
type
*
=
nullptr
)
void
save
(
std
::
unique_ptr
<
DatabaseEngine
>&
db
,
typename
std
::
enable_if
<
is_one_of
<
Id
,
T
...
>
::
value
&&
Coucou
>::
type
*
=
nullptr
)
{
const
Id
&
id
=
std
::
get
<
Id
>
(
this
->
columns
);
if
(
id
.
value
==
Id
::
unset_value
)
...
...
src/utils/is_one_of.hpp
View file @
33a5f135
...
...
@@ -3,15 +3,12 @@
#include <type_traits>
template
<
typename
...
>
struct
is_one_of
_implem
{
struct
is_one_of
{
static
constexpr
bool
value
=
false
;
};
template
<
typename
F
,
typename
S
,
typename
...
T
>
struct
is_one_of
_implem
<
F
,
S
,
T
...
>
{
struct
is_one_of
<
F
,
S
,
T
...
>
{
static
constexpr
bool
value
=
std
::
is_same
<
F
,
S
>::
value
||
is_one_of
_implem
<
F
,
T
...
>::
value
;
std
::
is_same
<
F
,
S
>::
value
||
is_one_of
<
F
,
T
...
>::
value
;
};
template
<
typename
...
T
>
constexpr
bool
is_one_of
=
is_one_of_implem
<
T
...
>::
value
;
tests/utils.cpp
View file @
33a5f135
...
...
@@ -175,11 +175,11 @@ TEST_CASE("dirname")
TEST_CASE
(
"is_in"
)
{
CHECK
((
is_one_of
<
int
,
float
,
std
::
string
,
int
>
)
==
true
);
CHECK
((
is_one_of
<
int
,
float
,
std
::
string
>
)
==
false
);
CHECK
((
is_one_of
<
int
>
)
==
false
);
CHECK
((
is_one_of
<
int
,
int
>
)
==
true
);
CHECK
((
is_one_of
<
bool
,
int
>
)
==
false
);
CHECK
((
is_one_of
<
bool
,
bool
>
)
==
true
);
CHECK
((
is_one_of
<
bool
,
bool
,
bool
,
bool
,
bool
,
int
>
)
==
true
);
CHECK
((
is_one_of
<
int
,
float
,
std
::
string
,
int
>
::
value
)
==
true
);
CHECK
((
is_one_of
<
int
,
float
,
std
::
string
>
::
value
)
==
false
);
CHECK
((
is_one_of
<
int
>
::
value
)
==
false
);
CHECK
((
is_one_of
<
int
,
int
>
::
value
)
==
true
);
CHECK
((
is_one_of
<
bool
,
int
>
::
value
)
==
false
);
CHECK
((
is_one_of
<
bool
,
bool
>
::
value
)
==
true
);
CHECK
((
is_one_of
<
bool
,
bool
,
bool
,
bool
,
bool
,
int
>
::
value
)
==
true
);
}
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