Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eicd
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
EIC
eicd
Commits
eec398db
Commit
eec398db
authored
3 years ago
by
Sylvester Joosten
Browse files
Options
Downloads
Patches
Plain Diff
Support eic::Index to be used as map key value
parent
dfac21a0
Branches
Branches containing commit
No related tags found
1 merge request
!54
Support eic::Index to be used as map key value
Pipeline
#19983
failed
3 years ago
Stage: config
Stage: build
Stage: deploy
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-0
2 additions, 0 deletions
.gitlab-ci.yml
eic_data.yaml
+2
-0
2 additions, 0 deletions
eic_data.yaml
with
4 additions
and
0 deletions
.gitlab-ci.yml
+
2
−
0
View file @
eec398db
...
...
@@ -12,6 +12,8 @@ workflow:
default
:
before_script
:
-
mkdir -p images && mkdir -p doc/
tags
:
-
phy
artifacts
:
paths
:
-
images/
...
...
This diff is collapsed.
Click to expand it.
eic_data.yaml
+
2
−
0
View file @
eec398db
...
...
@@ -43,6 +43,8 @@ components:
bool
equals(const
eic::Index&
rhs)
const
{return
rhs.source
==
source
&&
rhs.value
==
value;}
\n
bool
operator==(const
eic::Index&
rhs)
const
{return
equals(rhs);}
\n
bool
operator!=(const
eic::Index&
rhs)
const
{return
!equals(rhs);}
\n
bool
operator<(const
eic::Index&
rhs)
const
{return
long_form()
<
rhs.long_form();}
\n
int64_t
long_form()
const
{int64_t
l
=
static_cast<int64_t>(source)
<<
32
|
value;
return
l;}
\n
explicit
operator
bool()
const
{return
valid();}
"
...
...
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