C++: fix remaining doxygen warnings in image.h and string.h

This commit is contained in:
Simon Hausmann 2021-06-25 21:07:01 +02:00
parent 7e3e6faa31
commit 25820b57d4
2 changed files with 13 additions and 0 deletions

View file

@ -54,7 +54,9 @@ public:
/// Returns the size of the Image in pixels.
Size size() const { return cbindgen_private::types::sixtyfps_image_size(&data); }
/// Returns true if \a a refers to the same image as \a b; false otherwise.
friend bool operator==(const Image &a, const Image &b) { return a.data == b.data; }
/// Returns false if \a a refers to the same image as \a b; true otherwise.
friend bool operator!=(const Image &a, const Image &b) { return a.data != b.data; }
private: