Removed redundant spaces
[libcds.git] / test / stress / stack / intrusive_stack_type.h
index 078dc6784826f6c78109cb1e936f4d445985cf29..308237f60adaa2e86650f4fcf2be5f3e4b519195 100644 (file)
@@ -74,7 +74,7 @@ namespace istack {
             T * pop()
             {
                 unique_lock l( m_Lock );
-                if ( !m_Impl.empty() ) {
+                if ( !m_Impl.empty()) {
                      T * v = m_Impl.top();
                     m_Impl.pop();
                     return v;