--- source/common/unicode/uobject.h +++ source/common/unicode/uobject.h @@ -245,10 +245,10 @@ // direct use of UObject itself // default constructor - // inline UObject() {} + UObject() = default; // copy constructor - // inline UObject(const UObject &other) {} + UObject(const UObject &other) = default; #if 0 // TODO Sometime in the future. Implement operator==(). @@ -280,8 +280,8 @@ * Subclasses need this assignment operator if they use compiler-provided * assignment operators of their own. An alternative to not declaring one * here would be to declare and empty-implement a protected or public one. - UObject &UObject::operator=(const UObject &); */ + UObject &operator=(const UObject &) = default; }; #ifndef U_HIDE_INTERNAL_API aoo/trunk LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/o3tl/span.hxx
AgeCommit message (Expand)Author
2021-10-31add o3tl::span ctor from std::vectorLuboš Luňák
2021-10-29pass DX array around using o3tl::span instead of pointerNoel Grandin
2020-02-22Adapt o3tl::span to removal of std::span::cbegin et alStephan Bergmann
2019-12-07Adapt o3tl::span to P1872R0Stephan Bergmann
2019-03-18Adapt o3tl::span to updated C++2a std::spanStephan Bergmann
2019-01-13array_view was changed to span in upcoming C++20Stephan Bergmann