Skip to content

Commit 86f4d64

Browse files
committed
Fixed build errors
1 parent bbd808d commit 86f4d64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/remote/remote.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,15 @@ class BlobsContainer
263263

264264
Rbl* locate(SQUAD blob_id);
265265

266-
Rbl* BlobsContainer::getFirst()
266+
Rbl* getFirst()
267267
{
268268
if (m_tree.getFirst())
269269
return m_tree.current().m_blob;
270270

271271
return nullptr;
272272
}
273273

274-
Rbl* BlobsContainer::getNext()
274+
Rbl* getNext()
275275
{
276276
if (m_tree.getNext())
277277
return m_tree.current().m_blob;

0 commit comments

Comments
 (0)