Changeset 1144 for trunk/src/thread/thread.h
- Timestamp:
- Feb 25, 2012, 2:38:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/thread/thread.h
r1098 r1144 32 32 }; 33 33 34 class Queue : public QueueBase 34 template<typename T, int N = 128> class Queue : public QueueBase<T, N> 35 35 { 36 36 public: 37 Queue() : QueueBase () {}37 Queue() : QueueBase<T, N>() {} 38 38 }; 39 39
Note: See TracChangeset
for help on using the changeset viewer.