Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src_blockchain/bc/DebugDefaultLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void DebugDefaultLogger::log(const UnicodeString *message) noexcept {
delete [] str;
}

void DebugDefaultLogger::setSection(int section) noexcept {
void DebugDefaultLogger::addSection(int section) noexcept {
this->sections.addElement(section);
}

Expand Down
2 changes: 1 addition & 1 deletion src_blockchain/bc/DebugDefaultLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DebugDefaultLogger: public ISystemLogger {
DebugDefaultLogger();
virtual ~DebugDefaultLogger();

void setSection(int section) noexcept;
void addSection(int section) noexcept;

virtual void logException(const Exception* e) noexcept;
virtual void log(const UnicodeString* message) noexcept;
Expand Down
1 change: 1 addition & 0 deletions src_db/base/StackRelease.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ namespace alinous {
template <typename T>
class StackRelease {
public:
StackRelease() : ptr(nullptr) {}
explicit StackRelease(T* ptr) : ptr(ptr){
}
~StackRelease(){
Expand Down
Loading