Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit c2ff769

Browse files
committed
rename PL_ASSERT to PELOTON_ASSERT
1 parent 6dcacd8 commit c2ff769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/container/lock_free_array.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ bool LOCK_FREE_ARRAY_TYPE::Erase(const std::size_t &offset,
6363
template <typename ValueType>
6464
ValueType LOCK_FREE_ARRAY_TYPE::Find(const std::size_t &offset) const {
6565
LOG_TRACE("Find at %lu", offset);
66-
PL_ASSERT(lock_free_array.size() > offset);
66+
PELOTON_ASSERT(lock_free_array.size() > offset);
6767
auto value = lock_free_array.at(offset);
6868
return value;
6969
}

0 commit comments

Comments
 (0)