From e220a75053a25fcc1aac8584708bb9d994dd850a Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 29 Feb 2024 22:08:03 +0300 Subject: Make changes required for CI --- bdep/deinit-options.ixx | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 bdep/deinit-options.ixx (limited to 'bdep/deinit-options.ixx') diff --git a/bdep/deinit-options.ixx b/bdep/deinit-options.ixx new file mode 100644 index 0000000..d8d5ba6 --- /dev/null +++ b/bdep/deinit-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_deinit_options + // + + inline const bool& cmd_deinit_options:: + force () const + { + return this->force_; + } + + inline bool& cmd_deinit_options:: + force () + { + return this->force_; + } + + inline void cmd_deinit_options:: + force (const bool& x) + { + this->force_ = x; + } + + inline const bool& cmd_deinit_options:: + no_fetch () const + { + return this->no_fetch_; + } + + inline bool& cmd_deinit_options:: + no_fetch () + { + return this->no_fetch_; + } + + inline void cmd_deinit_options:: + no_fetch (const bool& x) + { + this->no_fetch_ = x; + } +} + +// Begin epilogue. +// +// +// End epilogue. -- cgit v1.1