Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sdk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
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
Show more breadcrumbs
The Openvibe Group
sdk
Merge requests
!271
fix overriden function
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix overriden function
120-remove-override-warnings
into
63-add-package-management
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
GARNIER Laurent
requested to merge
120-remove-override-warnings
into
63-add-package-management
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Fix a part of override
0
0
Merge request reports
Compare
63-add-package-management
63-add-package-management (base)
and
latest version
latest version
9bca2739
1 commit,
1 year ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
kernel/src/kernel/ovkCKernelContext.h
+
1
−
1
Options
@@ -64,7 +64,7 @@ public:
explicit
CKernelContextBridge
(
const
IKernelContext
&
ctx
)
:
m_kernelCtx
(
ctx
)
{
}
bool
initialize
(
)
{
return
true
;
}
bool
initialize
(
const
char
*
const
*
/*tokenList*/
=
nullptr
,
size_t
/*tokenCount*/
=
0
)
override
{
return
true
;
}
bool
uninitialize
()
override
{
return
true
;
}
void
setAlgorithmManager
(
IAlgorithmManager
*
manager
)
{
m_algorithmManager
=
manager
;
}
Loading