Skip to content
Merged
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
8 changes: 4 additions & 4 deletions plugins/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ struct Filter {
private:
std::regex category_;
std::regex plugin_;
DebugCategory::level level_;
size_t matches_;
bool persistent_;
bool enabled_;
DebugCategory::level level_{DebugCategory::level::LTRACE};
size_t matches_{0};
bool persistent_{false};
bool enabled_{false};
std::string categoryText_;
std::string pluginText_;
};
Expand Down