Browse Source

[2850] Comment new ZoneTable::destroy() argument

JINMEI Tatuya 12 years ago
parent
commit
861f24ea14
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/lib/datasrc/memory/zone_table.h

+ 3 - 1
src/lib/datasrc/memory/zone_table.h

@@ -147,8 +147,10 @@ public:
     /// \param ztable A non NULL pointer to a valid \c ZoneTable object
     /// that was originally created by the \c create() method (the behavior
     /// is undefined if this condition isn't met).
+    /// \param unused Ununsed parameter, provided so it's compatible to
+    /// SegmentObjectHolder.
     static void destroy(util::MemorySegment& mem_sgmt, ZoneTable* ztable,
-                        int = 0);
+                        int unused = 0);
 
     /// \brief Return the number of zones contained in the zone table.
     ///