From f5d27a72c12b8beebf6ac34fe5fc1239b9c7c691 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 19 Apr 2024 21:12:56 +0300 Subject: Make changes required for CI --- bdep/update-options.ixx | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 bdep/update-options.ixx (limited to 'bdep/update-options.ixx') diff --git a/bdep/update-options.ixx b/bdep/update-options.ixx new file mode 100644 index 0000000..87ba24f --- /dev/null +++ b/bdep/update-options.ixx @@ -0,0 +1,57 @@ +// -*- C++ -*- +// +// This file was generated by CLI, a command line interface +// compiler for C++. +// + +// Begin prologue. +// +// +// End prologue. + +namespace bdep +{ + // cmd_update_options + // + + inline const bool& cmd_update_options:: + immediate () const + { + return this->immediate_; + } + + inline bool& cmd_update_options:: + immediate () + { + return this->immediate_; + } + + inline void cmd_update_options:: + immediate (const bool& x) + { + this->immediate_ = x; + } + + inline const bool& cmd_update_options:: + recursive () const + { + return this->recursive_; + } + + inline bool& cmd_update_options:: + recursive () + { + return this->recursive_; + } + + inline void cmd_update_options:: + recursive (const bool& x) + { + this->recursive_ = x; + } +} + +// Begin epilogue. +// +// +// End epilogue. -- cgit v1.1