History log of /openbmc/phosphor-power/phosphor-regulators/src/actions/action_utils.hpp (Results 1 – 2 of 2)
Revision Date Author Comments
# ea7385b8 07-Nov-2019 Shawn McCarney <shawnmm@us.ibm.com>

Use C++17 format for nested namespace definitions

Use the new C++17 format for defining nested namespaces in the
phosphor-regulators application.

The definition
namespace

Use C++17 format for nested namespace definitions

Use the new C++17 format for defining nested namespaces in the
phosphor-regulators application.

The definition
namespace A::B::C
{
...
}

is now equivalent to
namespace A
{
namespace B
{
namespace C
{
...
}
}
}

Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
Change-Id: I284055bc94578a45d04d3561f511c0e347a8ecef

show more ...


# 78488f61 05-Nov-2019 Shawn McCarney <shawnmm@us.ibm.com>

Create regulators action_utils namespace

Create the action_utils namespace for utility functions related to the
regulators action framework.

Create a function in that namespace

Create regulators action_utils namespace

Create the action_utils namespace for utility functions related to the
regulators action framework.

Create a function in that namespace that executes a vector of actions.

Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
Change-Id: I22297435daad0d5f6ad61157c094938f0488f076

show more ...