Skip to content

Commit 7795a1a

Browse files
committed
Fix conversion warning in DoublyLinkedList
1 parent 1ce34f9 commit 7795a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/classes/DoublyLinkedList.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class DoublyLinkedList
106106

107107
constexpr FB_SIZE_T getCount() const noexcept
108108
{
109-
return stdList.size();
109+
return static_cast<FB_SIZE_T>(stdList.size());
110110
}
111111

112112
constexpr bool isEmpty() const noexcept

0 commit comments

Comments
 (0)