summaryrefslogtreecommitdiff
path: root/Rx/v2/examples/doxygen/combine_latest.cpp
AgeCommit message (Collapse)Author
2022-09-01Remove RxCpp, which is no longer used.HEADmastermainElliott Hughes
Do not necromance this without going through the go/android-3p process again. Test: treehugger Change-Id: Id813d74d7d2597e0636b925430117c94bea3fa5a
2018-10-19Fix doc target missing declarations errorsGeorg Sauthoff
Building the docs (e.g. with `ninja doc`) failed with GCC (e.g. GCC 7.3 under Fedora 27) with some missing declaration errors. Example: ../Rx/v2/examples/doxygen/main.cpp:7:13: error: no previous declaration for ‘std::__cxx11::string get_pid()’ [-Werror=missing-declarations] Thus, this change adds a shared declaration for `get_pid()` that is included by all users/the file where it's defined such that accidental deviation in the signature are immediately noticed (as compile error). Similarly, the visibility of the example `less()` is changed to static as it's only locally used. With those changes the doc target succeeds again.
2015-06-01Add description and examples for observable<T> membersValery Kopylov