Skip to content
Snippets Groups Projects
Commit 384b2078 authored by Olivier Stasse's avatar Olivier Stasse
Browse files

[clang] Update format.

parent 873dafcc
No related branches found
No related tags found
No related merge requests found
......@@ -61,14 +61,14 @@ namespace dynamicgraph {
#define SEND_WARNING_STREAM_MSG(msg) SEND_MSG(msg, MSG_TYPE_WARNING_STREAM)
#define SEND_ERROR_STREAM_MSG(msg) SEND_MSG(msg, MSG_TYPE_ERROR_STREAM)
template<typename T>
std::string toString(const T& v, const int precision=3, const int width=-1)
{
template <typename T>
std::string toString(const T &v, const int precision = 3,
const int width = -1) {
std::stringstream ss;
if(width>precision)
ss<<std::fixed<<std::setw(width)<<std::setprecision(precision)<<v;
if (width > precision)
ss << std::fixed << std::setw(width) << std::setprecision(precision) << v;
else
ss<<std::fixed<<std::setprecision(precision)<<v;
ss << std::fixed << std::setprecision(precision) << v;
return ss.str();
}
......
......@@ -51,15 +51,17 @@ public:
sendMsg("This is a message of level MSG_TYPE_ERROR_STREAM",
MSG_TYPE_ERROR_STREAM);
/* Add test toString */
double q=1.0;
sendMsg("Value to display: "+toString(q));
double q = 1.0;
sendMsg("Value to display: " + toString(q));
std::vector<double> vq;
vq.resize(3);
vq[0] = 1.0; vq[1] = 2.0; vq[2] = 3.0;
sendMsg("Value to display: "+toString(vq));
Eigen::Matrix<double,3,3> an_eig_m;
vq[0] = 1.0;
vq[1] = 2.0;
vq[2] = 3.0;
sendMsg("Value to display: " + toString(vq));
Eigen::Matrix<double, 3, 3> an_eig_m;
an_eig_m.Ones();
sendMsg("Value to display: "+toString(an_eig_m));
sendMsg("Value to display: " + toString(an_eig_m));
logger_.countdown();
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment