clang-format
This commit is contained in:
parent
521d2b76ad
commit
dec4b7ff8b
1 changed files with 2 additions and 8 deletions
|
@ -26,10 +26,7 @@ struct InvalidFieldFormat : public std::exception
|
|||
public:
|
||||
explicit InvalidFieldFormat(const std::string & msg) : message(prefix + msg) {}
|
||||
|
||||
const char * what() const noexcept
|
||||
{
|
||||
return message.c_str();
|
||||
}
|
||||
const char * what() const noexcept { return message.c_str(); }
|
||||
|
||||
private:
|
||||
const std::string prefix = "Invalid GTFS field format. ";
|
||||
|
@ -235,10 +232,7 @@ inline bool Time::limit_hours_to_24max()
|
|||
return true;
|
||||
}
|
||||
|
||||
inline void Time::set_total_seconds()
|
||||
{
|
||||
total_seconds = hh * 60 * 60 + mm * 60 + ss;
|
||||
}
|
||||
inline void Time::set_total_seconds() { total_seconds = hh * 60 * 60 + mm * 60 + ss; }
|
||||
|
||||
inline std::string append_leading_zero(const std::string & s, bool check = true)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue