19 lines
No EOL
657 B
C++
19 lines
No EOL
657 B
C++
|
|
//==================================================================================================
|
|
/*
|
|
ROTGEN - Runtime Overlay for Eigen
|
|
Copyright : CODE RECKONS
|
|
SPDX-License-Identifier: BSL-1.0
|
|
*/
|
|
//==================================================================================================
|
|
#include <rotgen/config.hpp>
|
|
#include <rotgen/common/export.hpp>
|
|
|
|
namespace rotgen::detail
|
|
{
|
|
ROTGEN_EXPORT std::ostream& dynamic_info(std::ostream& os)
|
|
{
|
|
if constexpr(rotgen::is_forcing_dynamic_status) return os << "[ROTGEN] - Fully Dynamic mode with:" << std::endl;
|
|
else return os << "[ROTGEN] - Flexible mode with:" << std::endl;
|
|
}
|
|
} |