Removed redundant spaces
[libcds.git] / test / stress / stack / stack_type.h
index be262c885aa82e2e148de628332c9aded19d154c..5c1dff20187afdaafd085305b979f852d95aadd0 100644 (file)
@@ -123,7 +123,7 @@ namespace stack {
             bool pop( T& v )
             {
                 unique_lock l( m_Lock );
-                if ( !m_Impl.empty() ) {
+                if ( !m_Impl.empty()) {
                     v = m_Impl.top();
                     m_Impl.pop();
                     return true;