@brief Sample class intended to exhibit docs for compiler-generated routines @hyde-owner fosterbrereton
| 15 | /// @brief Sample class intended to exhibit docs for compiler-generated routines |
| 16 | /// @hyde-owner fosterbrereton |
| 17 | struct compiler_generated { |
| 18 | compiler_generated() = delete; |
| 19 | compiler_generated(const compiler_generated&) = default; |
| 20 | |
| 21 | /// This definition will force the compiler to auto-generate this class' assignment operator. |
| 22 | void assign(const compiler_generated& rhs) { |
| 23 | *this = rhs; |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | /// An example struct from which these commands will hang. |
| 28 | /// @brief This is a sample brief. |
nothing calls this directly
no outgoing calls
no test coverage detected