Skip to content

Commit 8714054

Browse files
committed
Wrap get_reader declaration for readability
Reformat the get_reader method declaration in EntryImpl to split the parameter list across lines and align the Environment* env parameter. This is a non-functional style change to improve readability and comply with line-length/coding-style preferences.
1 parent b48ce98 commit 8714054

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/dataqueue/queue.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ class NonIdempotentDataQueueReader;
3333

3434
class EntryImpl : public DataQueue::Entry {
3535
public:
36-
std::shared_ptr<DataQueue::Reader> get_reader(Environment* env = nullptr) override = 0;
36+
std::shared_ptr<DataQueue::Reader> get_reader(
37+
Environment* env = nullptr) override = 0;
3738
};
3839

3940
class DataQueueImpl final : public DataQueue,

0 commit comments

Comments
 (0)