aboutsummaryrefslogtreecommitdiff
path: root/libbutl/process.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-10-08 09:28:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-10-08 09:28:15 +0200
commitc8802a33677dd84b5736c333c6821d6eba992b97 (patch)
tree0548cf802cab45d028c80b7fe69eab86c011ae18 /libbutl/process.ixx
parentcce149a53923bde3a78159e164794058bedc2909 (diff)
Add process_path::clear_recall()
Diffstat (limited to 'libbutl/process.ixx')
-rw-r--r--libbutl/process.ixx10
1 files changed, 10 insertions, 0 deletions
diff --git a/libbutl/process.ixx b/libbutl/process.ixx
index c7459c8..17c5daa 100644
--- a/libbutl/process.ixx
+++ b/libbutl/process.ixx
@@ -79,6 +79,16 @@ namespace butl
return effect.empty () ? recall_string () : effect.string ().c_str ();
}
+ inline void process_path::
+ clear_recall ()
+ {
+ if (!effect.empty ())
+ {
+ recall = std::move (effect);
+ effect.clear ();
+ }
+ }
+
// process_exit
//
#ifdef _WIN32