/* convert float hours to 12h format with no suffix */
	static std::string float_time_to_time12ns(double time)
	{
		return float_time_to_time12(time, true);
	}
Exemple #2
0
std::string PrayerTimes::float_time_to_time12ns(double time)
{
    return float_time_to_time12(time, true);
}