Skip to content

Commit d8a055e

Browse files
committed
remove namesapce issue
1 parent 5080b9c commit d8a055e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/IndexableSDFile.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class IndexableSDFile : public IndexableFile<BUFFER_SIZE, MAX_NUM_BUFFERS,File>
1313
public:
1414
static_assert(isPowerOf2(BUFFER_SIZE), "BUFFER_SIZE must be a power of 2");
1515

16-
IndexableSDFile(const char *filename, SDLib::SDClass &sd) :
16+
IndexableSDFile(const char *filename, SDClass &sd) :
1717
IndexableFile<BUFFER_SIZE, MAX_NUM_BUFFERS,File>(filename),
1818
_sd(sd)
1919
{
@@ -32,7 +32,7 @@ class IndexableSDFile : public IndexableFile<BUFFER_SIZE, MAX_NUM_BUFFERS,File>
3232
return IndexableFile<BUFFER_SIZE, MAX_NUM_BUFFERS,File>::operator[](i);
3333
}
3434
protected:
35-
SDLib::SDClass &_sd;
35+
SDClass &_sd;
3636
};
3737

3838
}

0 commit comments

Comments
 (0)