Small coding style cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38652 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2010-09-14 20:14:04 +00:00
parent 5a6b18e914
commit 449c016b46
@@ -14,7 +14,7 @@ struct media_raw_video_format;
class VideoSupplier { class VideoSupplier {
public: public:
VideoSupplier(); VideoSupplier();
virtual ~VideoSupplier(); virtual ~VideoSupplier();
@@ -27,7 +27,7 @@ class VideoSupplier {
inline bigtime_t ProcessingLatency() const inline bigtime_t ProcessingLatency() const
{ return fProcessingLatency; } { return fProcessingLatency; }
protected: protected:
bigtime_t fProcessingLatency; bigtime_t fProcessingLatency;
}; };