Fix indentation in Stream.h

This commit is contained in:
Tom Deakin 2016-04-26 14:50:58 +01:00
parent ee4820b5e4
commit ae679a5775

View File

@ -7,17 +7,18 @@ template <class T>
class Stream class Stream
{ {
public: public:
// Kernels // Kernels
// These must be blocking calls // These must be blocking calls
virtual void copy() = 0; virtual void copy() = 0;
virtual void mul() = 0; virtual void mul() = 0;
virtual void add() = 0; virtual void add() = 0;
virtual void triad() = 0; virtual void triad() = 0;
// Implementation specific device functions
static std::vector<int> getDeviceList(); // Implementation specific device functions
static std::vector<int> getDeviceName(); static std::vector<int> getDeviceList();
static std::vector<int> getDeviceDriver(); static std::vector<int> getDeviceName();
static std::vector<int> getDeviceDriver();
}; };