1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-04-28 23:07:19 +02:00

Fix an mistake in the declaration of the negation operator for the Buffer type.

This commit is contained in:
Sandu Liviu Catalin
2016-07-10 16:05:56 +03:00
parent 907df6966f
commit d71f76c63b
+1 -1
View File
@@ -395,7 +395,7 @@ public:
/* --------------------------------------------------------------------------------------------
* Negation operator.
*/
operator ! () const
bool operator ! () const
{
return (!m_Ptr);
}