Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
mobile_robotics
wolf_projects
wolf_lib
wolf
Commits
cdba3e90
Commit
cdba3e90
authored
3 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Fix class LoaderRaw: virtual destructor, init param
parent
0f85ebc1
No related branches found
No related tags found
2 merge requests
!436
Release to start wolf public
,
!433
After 2nd RA-L submission
Pipeline
#8314
passed
3 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/core/utils/loader.h
+1
-1
1 addition, 1 deletion
include/core/utils/loader.h
src/utils/loader.cpp
+1
-1
1 addition, 1 deletion
src/utils/loader.cpp
with
2 additions
and
2 deletions
include/core/utils/loader.h
+
1
−
1
View file @
cdba3e90
...
...
@@ -37,7 +37,7 @@ class LoaderRaw: public Loader{
void
*
resource_
;
public:
LoaderRaw
(
std
::
string
_file
);
~
LoaderRaw
();
virtual
~
LoaderRaw
();
void
load
()
override
;
void
close
()
override
;
};
...
...
This diff is collapsed.
Click to expand it.
src/utils/loader.cpp
+
1
−
1
View file @
cdba3e90
...
...
@@ -28,7 +28,7 @@ Loader::Loader(std::string _file)
{
path_
=
_file
;
}
LoaderRaw
::
LoaderRaw
(
std
::
string
_file
)
:
Loader
(
_file
)
LoaderRaw
::
LoaderRaw
(
std
::
string
_file
)
:
Loader
(
_file
)
,
resource_
(
nullptr
)
{
//
}
...
...
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