summaryrefslogtreecommitdiff
path: root/tests/cpp/include/bool2str.h
blob: 26aac80c50658e3db542e6057f2185bc1f82c6d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 *
 *  bool -> string
 *
 */



std::string bool2str(bool b)
{
	return b ? "Yes" : "No";
}