Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Chaofan Chen
ogs
Commits
1ee545ad
Commit
1ee545ad
authored
8 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[BL] prevent passing temporaries to ConfigTree ctor
parent
6962f5c3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
BaseLib/ConfigTree.h
+10
-3
10 additions, 3 deletions
BaseLib/ConfigTree.h
with
10 additions
and
3 deletions
BaseLib/ConfigTree.h
+
10
−
3
View file @
1ee545ad
...
@@ -256,9 +256,16 @@ public:
...
@@ -256,9 +256,16 @@ public:
* i.e., warnings will also result in program abortion!
* i.e., warnings will also result in program abortion!
*/
*/
explicit
ConfigTree
(
PTree
const
&
tree
,
explicit
ConfigTree
(
PTree
const
&
tree
,
std
::
string
const
&
filename
,
std
::
string
const
&
filename
,
Callback
const
&
error_cb
,
Callback
const
&
error_cb
,
Callback
const
&
warning_cb
);
Callback
const
&
warning_cb
);
/*! This constructor is deleted in order to prevent the user from passing
* temporary instances of \c PTree.
* Doing so would lead to a dangling reference \c _tree and to program crash.
*/
explicit
ConfigTree
(
PTree
&&
,
std
::
string
const
&
,
Callback
const
&
,
Callback
const
&
)
=
delete
;
//! copying is not compatible with the semantics of this class
//! copying is not compatible with the semantics of this class
ConfigTree
(
ConfigTree
const
&
)
=
delete
;
ConfigTree
(
ConfigTree
const
&
)
=
delete
;
...
...
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