--- src/common/classes/Nullable.h +++ src/common/classes/Nullable.h @@ -113,19 +113,19 @@ template class Nullable : public BaseNullable { public: - explicit Nullable(const T& v) + explicit Nullable(const T& v) { this->value = v; this->specified = true; } - Nullable(const Nullable& o) + Nullable(const Nullable& o) { this->value = o.value; this->specified = o.specified; } - Nullable() + Nullable() { NullableClear::clear(this->value); this->specified = false; --- src/common/classes/alloc.h +++ src/common/classes/alloc.h @@ -259,7 +259,7 @@ class SubsystemContextPoolHolder : public ContextPoolHolder { public: - SubsystemContextPoolHolder + SubsystemContextPoolHolder ( SubsystemThreadData* subThreadData, SubsystemPool* newPool --- src/common/classes/stack.h +++ src/common/classes/stack.h @@ -36,7 +36,7 @@ class Stack : public AutoStorage { private: - Stack(Stack&); // not implemented + Stack(Stack&); // not implemented class Entry : public Vector { @@ -117,11 +117,11 @@ Entry* stk_cache; public: - explicit Stack(MemoryPool& p) + explicit Stack(MemoryPool& p) : AutoStorage(p), stk(0), stk_cache(0) { } - Stack() : AutoStorage(), stk(0), stk_cache(0) { } + Stack() : AutoStorage(), stk(0), stk_cache(0) { } ~Stack() { ce-5-2'>distro/cib/libreoffice-5-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-11-08Simplify a bitMike Kaganski