Skip to content

Commit 802671d

Browse files
committed
Removed type
1 parent e09f1e7 commit 802671d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ include/pulsar/Version.h
6969
*.ninja*
7070
.clangd/
7171
compile_commands.json
72-
.cmake-build-debug/
7372

7473
# doxygen files
7574
apidocs/

lib/KeySharedPolicy.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ KeySharedPolicy &KeySharedPolicy::setAllowOutOfOrderDelivery(bool allowOutOfOrde
5151
bool KeySharedPolicy::isAllowOutOfOrderDelivery() const { return impl_->allowOutOfOrderDelivery; }
5252

5353
KeySharedPolicy &KeySharedPolicy::setStickyRanges(std::initializer_list<StickyRange> ranges) {
54-
return this->setStickyRanges(StickyRanges v(ranges));
54+
return this->setStickyRanges(StickyRanges(ranges));
5555
}
5656

5757
KeySharedPolicy &KeySharedPolicy::setStickyRanges(const StickyRanges &ranges) {

0 commit comments

Comments
 (0)