diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-07 23:16:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-07 23:16:45 +0100 |
| commit | ba5915461f1622715a69fa25579e5e27e64fb079 (patch) | |
| tree | 221ce87dfbac455c32459e07beb92b6003243e89 /src/subtitle_string.cc | |
| parent | a4fb6290e31f7e197cc399c745d320442eb093d4 (diff) | |
SubtitleString -> shared_ptr<Subtitle>
Diffstat (limited to 'src/subtitle_string.cc')
| -rw-r--r-- | src/subtitle_string.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/subtitle_string.cc b/src/subtitle_string.cc index 6d1e8cdb..f5f8c8ac 100644 --- a/src/subtitle_string.cc +++ b/src/subtitle_string.cc @@ -115,6 +115,12 @@ dcp::operator== (SubtitleString const & a, SubtitleString const & b) ); } +bool +dcp::operator!= (SubtitleString const & a, SubtitleString const & b) +{ + return !(a == b); +} + ostream& dcp::operator<< (ostream& s, SubtitleString const & sub) { |
