Declare BLooperListIterator in the right place.
Before, it tried to typedef it to a private struct, but outside of the class.
This commit is contained in:
committed by
Stephan Aßmus
parent
a2bf375cbd
commit
6abec6b93a
@@ -52,6 +52,7 @@ private:
|
|||||||
|
|
||||||
BLooper* looper;
|
BLooper* looper;
|
||||||
};
|
};
|
||||||
|
typedef std::vector<BLooperList::LooperData>::iterator LooperDataIterator;
|
||||||
struct FindLooperPred {
|
struct FindLooperPred {
|
||||||
FindLooperPred(const BLooper* loop) : looper(loop) {}
|
FindLooperPred(const BLooper* loop) : looper(loop) {}
|
||||||
bool operator()(LooperData& Data);
|
bool operator()(LooperData& Data);
|
||||||
|
|||||||
@@ -25,8 +25,6 @@ namespace BPrivate {
|
|||||||
|
|
||||||
BLooperList gLooperList;
|
BLooperList gLooperList;
|
||||||
|
|
||||||
typedef vector<BLooperList::LooperData>::iterator LooperDataIterator;
|
|
||||||
|
|
||||||
|
|
||||||
BLooperList::BLooperList()
|
BLooperList::BLooperList()
|
||||||
:
|
:
|
||||||
|
|||||||
Reference in New Issue
Block a user