Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
aidge
aidge_core
Commits
0aeba15c
Commit
0aeba15c
authored
1 year ago
by
Cyril Moineau
Committed by
Maxence Naud
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Make toString pure virtual and remove data ctor binding.
parent
89a6dced
No related branches found
No related tags found
2 merge requests
!105
version 0.2.0
,
!98
Conv no bias
Pipeline
#41734
passed
1 year ago
Stage: static_analysis
Stage: build
Stage: test
Stage: coverage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/aidge/data/Data.hpp
+1
-1
1 addition, 1 deletion
include/aidge/data/Data.hpp
python_binding/data/pybind_Data.cpp
+1
-2
1 addition, 2 deletions
python_binding/data/pybind_Data.cpp
with
2 additions
and
3 deletions
include/aidge/data/Data.hpp
+
1
−
1
View file @
0aeba15c
...
...
@@ -52,7 +52,7 @@ public:
return
mType
;
}
virtual
~
Data
()
=
default
;
virtual
std
::
string
toString
()
const
;
virtual
std
::
string
toString
()
const
=
0
;
private
:
const
std
::
string
mType
;
...
...
This diff is collapsed.
Click to expand it.
python_binding/data/pybind_Data.cpp
+
1
−
2
View file @
0aeba15c
...
...
@@ -29,8 +29,7 @@ void init_Data(py::module& m){
.
value
(
"UInt64"
,
DataType
::
UInt64
)
;
py
::
class_
<
Data
,
std
::
shared_ptr
<
Data
>>
(
m
,
"Data"
)
.
def
(
py
::
init
<
const
std
::
string
&>
());
py
::
class_
<
Data
,
std
::
shared_ptr
<
Data
>>
(
m
,
"Data"
);
}
...
...
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