Skip to content

Commit

Permalink
refactor: irc message builder (#5663)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz authored Oct 20, 2024
1 parent 352a4ec commit e35fabf
Show file tree
Hide file tree
Showing 12 changed files with 700 additions and 801 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
- Dev: Move plugins to Sol2. (#5622)
- Dev: Refactored static `MessageBuilder` helpers to standalone functions. (#5652)
- Dev: Decoupled reply parsing from `MessageBuilder`. (#5660)
- Dev: Refactored IRC message building. (#5663)

## 2.5.1

Expand Down
1 change: 0 additions & 1 deletion benchmarks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ set(benchmark_SOURCES
resources/bench.qrc

src/Emojis.cpp
src/Highlights.cpp
src/FormatTime.cpp
src/Helpers.cpp
src/LimitedQueue.cpp
Expand Down
102 changes: 0 additions & 102 deletions benchmarks/src/Highlights.cpp

This file was deleted.

1 change: 1 addition & 0 deletions src/messages/Message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class ScrollbarHighlight;

struct Message;
using MessagePtr = std::shared_ptr<const Message>;
using MessagePtrMut = std::shared_ptr<Message>;
struct Message {
Message();
~Message();
Expand Down
Loading

0 comments on commit e35fabf

Please sign in to comment.