Commit c634e392 authored by Ilya Lavrenov's avatar Ilya Lavrenov

removed extra semicolon

parent 9bda0546
...@@ -267,8 +267,8 @@ public: ...@@ -267,8 +267,8 @@ public:
inline operator const T* () const { return (const T*)m_pBuffer;} inline operator const T* () const { return (const T*)m_pBuffer;}
private: private:
// Disable copy operations // Disable copy operations
IppAutoBuffer(IppAutoBuffer &) {}; IppAutoBuffer(IppAutoBuffer &) {}
IppAutoBuffer& operator =(const IppAutoBuffer &) {return *this;}; IppAutoBuffer& operator =(const IppAutoBuffer &) {return *this;}
T* m_pBuffer; T* m_pBuffer;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment