Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Gaudi
Gaudi
Merge requests
!1270
Support for binding tools to event and/or conditions data
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Support for binding tools to event and/or conditions data
bound-tool
into
master
Overview
17
Commits
4
Pipelines
38
Changes
6
Merged
Gerhard Raven
requested to merge
bound-tool
into
master
3 years ago
Overview
3
Commits
4
Pipelines
38
Changes
6
Expand
Support for binding tools to event and/or conditions data
Edited
3 years ago
by
Gerhard Raven
0
0
Merge request reports
Viewing commit
efbfa08c
Show latest version
6 files
+
65
−
68
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
efbfa08c
next iteration on support for binding tools
· efbfa08c
Gerhard Raven
authored
3 years ago
GaudiAlg/include/GaudiAlg/FunctionalDetails.h
+
2
−
2
Options
@@ -376,8 +376,8 @@ namespace Gaudi::Functional::details {
// check whether Traits::BaseClass is a valid type,
// if so, define BaseClass_t<Traits> as being Traits::BaseClass
// else define as being GaudiAlgorithm
template
<
typename
Tr
>
using
BaseClass_t
=
Gaudi
::
cpp17
::
detected_or_t
<
GaudiAlgorithm
,
detail2
::
BaseClass_t
,
Tr
>
;
template
<
typename
Tr
,
typename
Base
=
GaudiAlgorithm
>
using
BaseClass_t
=
Gaudi
::
cpp17
::
detected_or_t
<
Base
,
detail2
::
BaseClass_t
,
Tr
>
;
// check whether Traits::{Input,Output}Handle<T> is a valid type,
// if so, define {Input,Output}Handle_t<Traits,T> as being Traits::{Input,Output}Handle<T>
Loading