Removed trailing spaces
[libcds.git] / cds / intrusive / free_list.h
index c309d7d11e00e8dca1eb16c0b64748fedcc8274b..0a27bd8c0151cb0b0dc213b5ce3965e6a97fce94 100644 (file)
@@ -38,7 +38,7 @@ namespace cds { namespace intrusive {
     /// Lock-free free list
     /** @ingroup cds_intrusive_freelist
 
-        Free list is a helper class intended for reusing objects instead of freeing them completely; 
+        Free list is a helper class intended for reusing objects instead of freeing them completely;
         this avoids the overhead of \p malloc(), and also avoids its worst-case behavior of taking an operating system lock.
         So, the free list can be considered as a specialized allocator for objects of some type.