diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-11-14 00:38:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-11-14 00:38:51 +0100 |
| commit | e30e83c698a866f2bea2118804683097be589cc9 (patch) | |
| tree | 2311db383e2b6021431a795868ee12c7775ed952 /src/subrip_reader.h | |
| parent | db4a3dbc4aa4cdcffb96c67b8f6d4d68c5467933 (diff) | |
Allow SubripReader::convert_time to take a milliseconds separator.
Maybe this method should just be on its own somewhere now.
Diffstat (limited to 'src/subrip_reader.h')
| -rw-r--r-- | src/subrip_reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subrip_reader.h b/src/subrip_reader.h index e29002f..83fefdf 100644 --- a/src/subrip_reader.h +++ b/src/subrip_reader.h @@ -41,7 +41,7 @@ public: SubripReader (FILE* f); SubripReader (std::string subs); - static boost::optional<Time> convert_time(std::string t, std::string* expected = nullptr); + static boost::optional<Time> convert_time(std::string t, std::string milliseconds_separator, std::string* expected = nullptr); private: /* For tests */ |
